Skip to content

Commit

Permalink
Update github actions to actions/checkout@v4 actions/cache@v4 codecov…
Browse files Browse the repository at this point in the history
…/codecov-action@v5
  • Loading branch information
firstred committed Nov 18, 2024
1 parent 7d035c9 commit cdbaab9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -28,7 +28,7 @@ jobs:
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: Cache composer dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-${{ matrix.php-versions }}-composer-${{ hashFiles('**/composer.json') }}
Expand All @@ -51,4 +51,4 @@ jobs:

- name: Codecov
if: matrix.php-versions == '8.3' && matrix.operating-system == 'ubuntu-latest'
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v5

0 comments on commit cdbaab9

Please sign in to comment.