File tree Expand file tree Collapse file tree 4 files changed +8
-14
lines changed
Expand file tree Collapse file tree 4 files changed +8
-14
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ permissions:
2222 contents : read
2323
2424env :
25- UBUNTU_VERSION : ubuntu-latest
2625 NODE_VERSION : latest
2726 PHP_VERSION : 8.3
2827 PHPUNIT_VERSION : 11
3433 security-events : write # for github/codeql-action/upload-sarif to upload SARIF results
3534 actions : read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
3635 name : Codacy Security Scan
37- runs-on : ${{ env.UBUNTU_VERSION }}
36+ runs-on : ubuntu-latest
3837 steps :
3938 # Checkout the repository to the GitHub Actions runner
4039 - name : Checkout code
6463
6564 codacy-coverage-reporter :
6665 name : Codacy Coverage Reporter
67- runs-on : ${{ env.UBUNTU_VERSION }}
66+ runs-on : ubuntu-latest
6867 steps :
6968 - name : Setup PHP ${{ env.PHP_VERSION }}
7069 uses : shivammathur/setup-php@v2
Original file line number Diff line number Diff line change 55# Source repository: https://github.com/actions/dependency-review-action
66# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
77name : " Dependency Review"
8- on : [pull_request]
8+ on :
9+ pull_request :
10+ branches : [ "master", "main" ]
911
1012permissions :
1113 contents : read
1214 pull-requests : write
1315
14- env :
15- UBUNTU_VERSION : ubuntu-latest
16-
1716jobs :
1817 dependency-review :
1918 name : Dependency Review
20- runs-on : ${{ env.UBUNTU_VERSION }}
19+ runs-on : ubuntu-latest
2120 steps :
2221 - name : " Checkout Repository"
2322 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 1515 # eslint-disable-next-line yml/no-empty-mapping-value
1616 workflow_dispatch :
1717
18- env :
19- UBUNTU_VERSION : ubuntu-latest
20-
2118jobs :
2219 lint :
2320 name : DevSkim
24- runs-on : ${{ env.UBUNTU_VERSION }}
21+ runs-on : ubuntu-latest
2522 permissions :
2623 actions : read
2724 contents : read
Original file line number Diff line number Diff line change @@ -19,15 +19,14 @@ permissions:
1919 pull-requests : read # allows SonarCloud to decorate PRs with analysis results
2020
2121env :
22- UBUNTU_VERSION : ubuntu-latest
2322 NODE_VERSION : latest
2423 PHP_VERSION : 8.3
2524 PHPUNIT_VERSION : 11
2625
2726jobs :
2827 sonarqube :
2928 name : SonarQube
30- runs-on : ${{ env.UBUNTU_VERSION }}
29+ runs-on : ubuntu-latest
3130
3231 steps :
3332 - name : Setup PHP ${{ env.PHP_VERSION }}
You can’t perform that action at this time.
0 commit comments