Skip to content

Commit 7062b29

Browse files
authored
Merge branch 'main' into tangrufus-patch-1
2 parents 300082f + 5c86ec3 commit 7062b29

6 files changed

Lines changed: 626 additions & 299 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
README.md
9898
LICENSE
9999
sparse-checkout-cone-mode: false
100-
- uses: actions/download-artifact@v6
100+
- uses: actions/download-artifact@v7
101101
with:
102102
name: binaries
103103
path: dist
@@ -148,7 +148,7 @@ jobs:
148148
sparse-checkout-cone-mode: false
149149
ref: ${{ inputs.version }}
150150

151-
- uses: actions/download-artifact@v6
151+
- uses: actions/download-artifact@v7
152152
with:
153153
name: binaries
154154
path: dist

.github/workflows/test.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
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
@@ -44,7 +44,7 @@ jobs:
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

@@ -77,7 +77,7 @@ jobs:
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

Comments
 (0)