Skip to content

Commit cdbaab9

Browse files
committed
Update github actions to actions/checkout@v4 actions/cache@v4 codecov/codecov-action@v5
1 parent 7d035c9 commit cdbaab9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
1010
steps:
1111
- name: Checkout repo
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313

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

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

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

0 commit comments

Comments
 (0)