3131
3232 - run : composer pest:unit -- --coverage-clover coverage-unit.xml --ci
3333
34- - uses : actions/upload-artifact@v5
34+ - uses : actions/upload-artifact@v6
3535 with :
3636 name : coverage
3737 path : coverage-unit.xml
4444 steps :
4545 - uses : actions/checkout@v6
4646
47- - uses : actions/download-artifact@v6
47+ - uses : actions/download-artifact@v7
4848 with :
4949 name : coverage
5050
7777
7878 - run : box compile
7979
80- - uses : actions/upload-artifact@v5
80+ - uses : actions/upload-artifact@v6
8181 with :
8282 name : phar
8383 path : phar/php-matrix
@@ -118,14 +118,14 @@ jobs:
118118 PATTERN : spc-${{ matrix.spc-variant }}.tar.gz
119119 GH_TOKEN : ${{ github.token }}
120120
121- - uses : actions/download-artifact@v6
121+ - uses : actions/download-artifact@v7
122122 with :
123123 name : phar
124124 path : phar
125125
126126 - name : Restore cached micro.sfx
127127 id : restore-micro-sfx
128- uses : actions/cache/restore@v4
128+ uses : actions/cache/restore@v5
129129 with :
130130 path : buildroot/bin/micro.sfx
131131 key : micro-sfx-${{ runner.os }}-${{ runner.arch }}-${{ needs.phar.outputs.php-version }}-${{ hashFiles('craft.yml') }}
@@ -139,15 +139,15 @@ jobs:
139139 - name : Cache micro.sfx
140140 id : cache-micro-sfx
141141 if : steps.restore-micro-sfx.outputs.cache-hit != 'true'
142- uses : actions/cache/save@v4
142+ uses : actions/cache/save@v5
143143 with :
144144 path : buildroot/bin/micro.sfx
145145 key : ${{ steps.restore-micro-sfx.outputs.cache-primary-key }}
146146
147147 - run : mkdir -p out
148148 - run : spc micro:combine phar/php-matrix --output out/php-matrix
149149
150- - uses : actions/upload-artifact@v5
150+ - uses : actions/upload-artifact@v6
151151 with :
152152 name : php-matrix_${{ matrix.variant }}
153153 path : out/php-matrix
@@ -171,7 +171,7 @@ jobs:
171171 - run : echo OS="$(go env GOOS)" >> $GITHUB_ENV
172172 - run : echo ARCH="$(go env GOARCH)" >> $GITHUB_ENV
173173
174- - uses : actions/download-artifact@v6
174+ - uses : actions/download-artifact@v7
175175 with :
176176 name : php-matrix_${{ matrix.variant }}
177177 path : out
@@ -196,7 +196,7 @@ jobs:
196196 runs-on : ubuntu-24.04
197197 steps :
198198 - name : Merge binary artifacts
199- uses : actions/upload-artifact/merge@v5
199+ uses : actions/upload-artifact/merge@v6
200200 with :
201201 name : binaries
202202 pattern : php-matrix_*
0 commit comments