@@ -52,23 +52,23 @@ jobs:
5252 --no-progress
5353 .
5454# # 01.quality.php.validate.dependencies-file.yml
55- # validate-dependencies-file:
56- # name: Validate dependencies file
57- # runs-on: ubuntu-24.04
58- # steps:
59- # - uses: actions/checkout@v4
60- # - run: >-
61- # composer validate
62- # --check-lock
63- # --no-plugins
64- # --no-scripts
65- # --strict
55+ validate-dependencies-file :
56+ name : Validate dependencies file
57+ runs-on : ubuntu-24.04
58+ steps :
59+ - uses : actions/checkout@v4
60+ - run : >-
61+ composer validate
62+ --check-lock
63+ --no-plugins
64+ --no-scripts
65+ --strict
6666 # 02.test.php.test-unit.yml
6767 php-unittest :
6868 name : PHP Unit Tests
6969 needs :
7070 - lint-php-syntax
71- # - validate-dependencies-file
71+ - validate-dependencies-file
7272 runs-on : ubuntu-24.04
7373 strategy :
7474 fail-fast : false
@@ -90,23 +90,23 @@ jobs:
9090 COMPOSER_AUTH : ' {"github-oauth": {"github.com": "${{ secrets.GITHUB_TOKEN }}"}}'
9191 - run : vendor/bin/phpunit --configuration tests/phpunit/phpunit.xml
9292 # 03.quality.php.scan.dependencies-vulnerabilities.yml
93- # scan-dependencies-vulnerabilities:
94- # name: Scan Dependencies Vulnerabilities
95- # needs:
96- # - validate-dependencies-file
97- # runs-on: ubuntu-24.04
98- # steps:
99- # - uses: actions/checkout@v4
100- # - name: Install and Cache Composer dependencies
101- # uses: "ramsey/composer-install@v2"
102- # env:
103- # COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{ secrets.GITHUB_TOKEN }}"}}'
104- # - run: >-
105- # composer audit
106- # --abandoned=report
107- # --no-dev
108- # --no-plugins
109- # --no-scripts
93+ scan-dependencies-vulnerabilities :
94+ name : Scan Dependencies Vulnerabilities
95+ needs :
96+ - validate-dependencies-file
97+ runs-on : ubuntu-24.04
98+ steps :
99+ - uses : actions/checkout@v4
100+ - name : Install and Cache Composer dependencies
101+ uses : " ramsey/composer-install@v2"
102+ env :
103+ COMPOSER_AUTH : ' {"github-oauth": {"github.com": "${{ secrets.GITHUB_TOKEN }}"}}'
104+ - run : >-
105+ composer audit
106+ --abandoned=report
107+ --no-dev
108+ --no-plugins
109+ --no-scripts
110110 # 03.quality.php.lint-version-compatibility.yml
111111 php-check-version-compatibility :
112112 name : PHP Version Compatibility
0 commit comments