Skip to content

Commit

Permalink
Bump github actions tools
Browse files Browse the repository at this point in the history
  • Loading branch information
dmolineus committed Feb 19, 2024
1 parent b5f8bb6 commit a81bcd0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/diagnostics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Pull source
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
Expand All @@ -38,7 +38,7 @@ jobs:
coverage: xdebug2

- name: Cache composer cache directory
uses: actions/cache@v1
uses: actions/cache@v4
env:
cache-name: composer-cache-dir-${{ matrix.php }}
with:
Expand All @@ -49,7 +49,7 @@ jobs:
run: composer install

- name: Cache vendor directory of phpcq tool runner
uses: actions/cache@v1
uses: actions/cache@v4
env:
cache-name: vendor-${{ matrix.php }}
with:
Expand All @@ -68,7 +68,7 @@ jobs:
run: $GITHUB_WORKSPACE/vendor/bin/phpcq run -o github-action -o default ${{ matrix.phpcq_flags }} -v

- name: Upload build directory to artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: ${{ success() }} || ${{ failure() }}
with:
name: phpcq-builds-php-${{ matrix.php }}
Expand Down

0 comments on commit a81bcd0

Please sign in to comment.