@@ -10,13 +10,13 @@ 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
19- key : ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
19+ key : ${{ runner.os }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
2020
2121 - name : Composer install
2222 uses : php-actions/composer@v6
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 :
32- name : build-artifact
32+ name : build-artifact-${{ matrix.php }}
3333 path : /tmp/github-actions
3434
3535 phpunit :
@@ -43,16 +43,16 @@ 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 :
48- name : build-artifact
48+ name : build-artifact-${{ matrix.php }}
4949 path : /tmp/github-actions
5050
5151 - name : Extract build archive
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 :
@@ -62,28 +62,31 @@ jobs:
6262 coverage_clover : _coverage/clover.xml
6363
6464 - name : Store coverage data
65- uses : actions/upload-artifact@v3
65+ uses : actions/upload-artifact@v4
6666 with :
67- name : code-coverage
67+ name : code-coverage-${{ matrix.php }}-${{ github.run_number }}
6868 path : _coverage
6969
7070 coverage :
7171 runs-on : ubuntu-latest
7272 needs : [ phpunit ]
73+ strategy :
74+ matrix :
75+ php : [ 8.1, 8.2, 8.3, 8.4 ]
7376
7477 steps :
75- - uses : actions/checkout@v3
78+ - uses : actions/checkout@v4
7679
77- - uses : actions/download-artifact@v3
80+ - uses : actions/download-artifact@v4
7881 with :
79- name : code-coverage
82+ name : code-coverage-${{ matrix.php }}-${{ github.run_number }}
8083 path : _coverage
8184
8285 - name : Output coverage
8386 run : cat "_coverage/coverage.txt"
8487
8588 - name : Upload to Codecov
86- uses : codecov/codecov-action@v3
89+ uses : codecov/codecov-action@v5
8790
8891 phpstan :
8992 runs-on : ubuntu-latest
9396 php : [ 8.1, 8.2, 8.3, 8.4 ]
9497
9598 steps :
96- - uses : actions/download-artifact@v3
99+ - uses : actions/download-artifact@v4
97100 with :
98- name : build-artifact
101+ name : build-artifact-${{ matrix.php }}
99102 path : /tmp/github-actions
100103
101104 - name : Extract build archive
@@ -115,9 +118,9 @@ jobs:
115118 php : [ 8.1, 8.2, 8.3, 8.4 ]
116119
117120 steps :
118- - uses : actions/download-artifact@v3
121+ - uses : actions/download-artifact@v4
119122 with :
120- name : build-artifact
123+ name : build-artifact-${{ matrix.php }}
121124 path : /tmp/github-actions
122125
123126 - name : Extract build archive
@@ -139,9 +142,9 @@ jobs:
139142 php : [ 8.1, 8.2, 8.3, 8.4 ]
140143
141144 steps :
142- - uses : actions/download-artifact@v3
145+ - uses : actions/download-artifact@v4
143146 with :
144- name : build-artifact
147+ name : build-artifact-${{ matrix.php }}
145148 path : /tmp/github-actions
146149
147150 - name : Extract build archive
@@ -162,7 +165,7 @@ jobs:
162165 env :
163166 GH_TOKEN : ${{ github.token }}
164167 run : |
165- gh api "/repos/${{ github.repository }}/actions/artifacts?name=build-artifact" | jq ".artifacts[] | select(.name == \"build-artifact\") | .id" > artifact-id-list.txt
168+ gh api "/repos/${{ github.repository }}/actions/artifacts?name=build-artifact" | jq ".artifacts[] | select(.name | startswith( \"build-artifact\") ) | .id" > artifact-id-list.txt
166169 while read id
167170 do
168171 echo -n "Deleting artifact ID $id ... "
0 commit comments