File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ jobs:
1212 runs-on : ubuntu-latest
1313
1414 steps :
15- - uses : actions/checkout@v2
15+ - uses : actions/checkout@v4
1616
1717 - name : Validate composer.json and composer.lock
1818 run : composer validate
1919
2020 - name : Cache Composer packages
2121 id : composer-cache
22- uses : actions/cache@v2
22+ uses : actions/cache@v4
2323 with :
2424 path : vendor
2525 key : ${{ runner.os }}-node-${{ hashFiles('**/composer.lock') }}
3030 if : steps.composer-cache.outputs.cache-hit != 'true'
3131 run : composer install --prefer-dist --no-progress --no-suggest
3232
33- # Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
34- # Docs: https://getcomposer.org/doc/articles/scripts.md
35-
3633 - name : Run test suite
3734 run : composer run-script test
You can’t perform that action at this time.
0 commit comments