Skip to content

Commit 7c9bbb6

Browse files
author
Greg Bowler
committed
ci: update versions
1 parent 29174a5 commit 7c9bbb6

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
php: [ 8.1, 8.2, 8.3, 8.4 ]
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Cache Composer dependencies
16-
uses: actions/cache@v3
16+
uses: actions/cache@v4
1717
with:
1818
path: /tmp/composer-cache
1919
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
@@ -27,7 +27,7 @@ jobs:
2727
run: mkdir /tmp/github-actions/ && tar -cvf /tmp/github-actions/build.tar ./
2828

2929
- name: Upload build archive for test runners
30-
uses: actions/upload-artifact@v3
30+
uses: actions/upload-artifact@v4
3131
with:
3232
name: build-artifact
3333
path: /tmp/github-actions
@@ -43,7 +43,7 @@ jobs:
4343
coverage: ${{ steps.store-coverage.outputs.coverage_text }}
4444

4545
steps:
46-
- uses: actions/download-artifact@v3
46+
- uses: actions/download-artifact@v4
4747
with:
4848
name: build-artifact
4949
path: /tmp/github-actions
@@ -52,7 +52,7 @@ jobs:
5252
run: tar -xvf /tmp/github-actions/build.tar ./
5353

5454
- name: PHP Unit tests
55-
uses: php-actions/phpunit@v3
55+
uses: php-actions/phpunit@v4
5656
env:
5757
XDEBUG_MODE: cover
5858
with:
@@ -72,9 +72,9 @@ jobs:
7272
needs: [ phpunit ]
7373

7474
steps:
75-
- uses: actions/checkout@v3
75+
- uses: actions/checkout@v4
7676

77-
- uses: actions/download-artifact@v3
77+
- uses: actions/download-artifact@v4
7878
with:
7979
name: code-coverage
8080
path: _coverage
@@ -83,7 +83,7 @@ jobs:
8383
run: cat "_coverage/coverage.txt"
8484

8585
- name: Upload to Codecov
86-
uses: codecov/codecov-action@v3
86+
uses: codecov/codecov-action@v5
8787

8888
phpstan:
8989
runs-on: ubuntu-latest
@@ -93,7 +93,7 @@ jobs:
9393
php: [ 8.1, 8.2, 8.3, 8.4 ]
9494

9595
steps:
96-
- uses: actions/download-artifact@v3
96+
- uses: actions/download-artifact@v4
9797
with:
9898
name: build-artifact
9999
path: /tmp/github-actions
@@ -115,7 +115,7 @@ jobs:
115115
php: [ 8.1, 8.2, 8.3, 8.4 ]
116116

117117
steps:
118-
- uses: actions/download-artifact@v3
118+
- uses: actions/download-artifact@v4
119119
with:
120120
name: build-artifact
121121
path: /tmp/github-actions
@@ -139,7 +139,7 @@ jobs:
139139
php: [ 8.1, 8.2, 8.3, 8.4 ]
140140

141141
steps:
142-
- uses: actions/download-artifact@v3
142+
- uses: actions/download-artifact@v4
143143
with:
144144
name: build-artifact
145145
path: /tmp/github-actions

0 commit comments

Comments
 (0)