apply explicit permissions as per CodeQL suggestion

as per rule ID actions/missing-workflow-permissions
This commit is contained in:
El RIDO 2025-10-10 15:07:44 +02:00
parent 7779f1ac65
commit 51eff47614
No known key found for this signature in database
GPG key ID: 0F5C940A6BD81F92
5 changed files with 20 additions and 0 deletions

View file

@ -17,6 +17,10 @@ on:
schedule:
- cron: '45 16 * * 1'
permissions:
contents: read
security-events: write
jobs:
codacy-security-scan:
name: Codacy Security Scan

View file

@ -18,6 +18,10 @@ on:
schedule:
- cron: '28 22 * * 5'
permissions:
contents: read
security-events: write
jobs:
analyze:
name: Analyze

View file

@ -4,8 +4,12 @@ on:
push:
tags: '[0-9]+.[0-9]?[0-9]?[0-9]?.?[0-9]+'
permissions: {}
jobs:
draft:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Fetch changelog from tag

View file

@ -8,6 +8,11 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
security-events: write
jobs:
# https://github.com/snyk/actions/tree/master/php
snyk-php:

View file

@ -1,10 +1,13 @@
name: Tests
on:
push:
pull_request:
branches: [ master ]
workflow_dispatch:
permissions: {}
jobs:
Composer: