Skip to content

Commit 5b77ee7

Browse files
Bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b6ff925 commit 5b77ee7

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

.github/workflows/main-pm-matrix.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-22.04
3030

3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333

3434
- name: Install tools and dependencies
3535
run: |
@@ -38,22 +38,22 @@ jobs:
3838
3939
- name: Prepare compile.sh download cache
4040
id: download-cache
41-
uses: actions/cache@v4
41+
uses: actions/cache@v5
4242
with:
4343
path: ./download_cache
4444
key: compile-sh-cache-ssl-https-${{ hashFiles('./compile.sh') }}
4545
restore-keys: compile-sh-cache-ssl-https-
4646

4747
- name: Fetch compiler cache
4848
id: compiler-cache
49-
uses: actions/cache@v4
49+
uses: actions/cache@v5
5050
with:
5151
path: ${{ github.workspace }}/compiler
5252
key: musl-cross-make-${{ env.MUSL_CROSS_MAKE_VERSION }}
5353

5454
- name: Checkout musl-cross-make
5555
if: steps.compiler-cache.outputs.cache-hit != 'true'
56-
uses: actions/checkout@v5
56+
uses: actions/checkout@v6
5757
with:
5858
repository: pmmp/musl-cross-make
5959
path: musl-cross-make
@@ -84,7 +84,7 @@ jobs:
8484
tar -czf ./Z-PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}-debugging-symbols.tar.gz bin-debug
8585
8686
- name: Upload artifacts
87-
uses: actions/upload-artifact@v5
87+
uses: actions/upload-artifact@v6
8888
if: always()
8989
with:
9090
name: PHP-${{ inputs.php-version-base }}-Android-PM${{ inputs.pm-version-major }}
@@ -99,7 +99,7 @@ jobs:
9999
run: tar -czf workspace.tar.gz install_data
100100

101101
- name: Upload workspace
102-
uses: actions/upload-artifact@v5
102+
uses: actions/upload-artifact@v6
103103
if: failure()
104104
with:
105105
name: PHP-${{ inputs.php-version-base }}-Android-workspace-PM${{ inputs.pm-version-major }}
@@ -112,7 +112,7 @@ jobs:
112112
runs-on: ubuntu-22.04
113113

114114
steps:
115-
- uses: actions/checkout@v5
115+
- uses: actions/checkout@v6
116116

117117
- name: Install tools and dependencies
118118
run: |
@@ -121,7 +121,7 @@ jobs:
121121
122122
- name: Prepare compile.sh download cache
123123
id: download-cache
124-
uses: actions/cache@v4
124+
uses: actions/cache@v5
125125
with:
126126
path: ./download_cache
127127
key: compile-sh-cache-ssl-https-${{ hashFiles('./compile.sh') }}
@@ -140,7 +140,7 @@ jobs:
140140
tar -czf ./Z-PHP-${{ inputs.php-version-base }}-Linux-x86_64-PM${{ inputs.pm-version-major }}-debugging-symbols.tar.gz bin-debug
141141
142142
- name: Upload artifacts
143-
uses: actions/upload-artifact@v5
143+
uses: actions/upload-artifact@v6
144144
if: always()
145145
with:
146146
name: PHP-${{ inputs.php-version-base }}-Linux-PM${{ inputs.pm-version-major }}
@@ -155,7 +155,7 @@ jobs:
155155
run: tar -czf workspace.tar.gz install_data
156156

157157
- name: Upload workspace
158-
uses: actions/upload-artifact@v5
158+
uses: actions/upload-artifact@v6
159159
if: failure()
160160
with:
161161
name: PHP-${{ inputs.php-version-base }}-Linux-workspace-PM${{ inputs.pm-version-major }}
@@ -177,7 +177,7 @@ jobs:
177177
image: macos-15
178178

179179
steps:
180-
- uses: actions/checkout@v5
180+
- uses: actions/checkout@v6
181181

182182
- name: Install tools and dependencies
183183
run: |
@@ -187,7 +187,7 @@ jobs:
187187
188188
- name: Prepare compile.sh download cache
189189
id: download-cache
190-
uses: actions/cache@v4
190+
uses: actions/cache@v5
191191
with:
192192
path: ./download_cache
193193
key: compile-sh-cache-ssl-https-${{ hashFiles('./compile.sh') }}
@@ -206,7 +206,7 @@ jobs:
206206
tar -czf ./Z-PHP-${{ inputs.php-version-base }}-MacOS-${{ matrix.artifact-name }}-PM${{ inputs.pm-version-major }}-debugging-symbols.tar.gz bin-debug
207207
208208
- name: Upload artifacts
209-
uses: actions/upload-artifact@v5
209+
uses: actions/upload-artifact@v6
210210
if: always()
211211
with:
212212
name: PHP-${{ inputs.php-version-base }}-MacOS-${{ matrix.artifact-name }}-PM${{ inputs.pm-version-major }}
@@ -221,7 +221,7 @@ jobs:
221221
run: tar -czf workspace.tar.gz install_data
222222

223223
- name: Upload workspace
224-
uses: actions/upload-artifact@v5
224+
uses: actions/upload-artifact@v6
225225
if: failure()
226226
with:
227227
name: PHP-${{ inputs.php-version-base }}-MacOS-${{ matrix.artifact-name }}-workspace-PM${{ inputs.pm-version-major }}
@@ -234,11 +234,11 @@ jobs:
234234
runs-on: windows-2022
235235

236236
steps:
237-
- uses: actions/checkout@v5
237+
- uses: actions/checkout@v6
238238

239239
- name: Prepare download cache
240240
id: download-cache
241-
uses: actions/cache@v4
241+
uses: actions/cache@v5
242242
with:
243243
path: ./download_cache
244244
key: windows-cache-${{ hashFiles('./windows-compile-vs.ps1') }}
@@ -259,7 +259,7 @@ jobs:
259259
move temp\*.zip .
260260
261261
- name: Upload artifacts
262-
uses: actions/upload-artifact@v5
262+
uses: actions/upload-artifact@v6
263263
if: always()
264264
with:
265265
name: PHP-${{ inputs.php-version-base }}-Windows-PM${{ inputs.pm-version-major }}
@@ -281,7 +281,7 @@ jobs:
281281
contents: write
282282

283283
steps:
284-
- uses: actions/checkout@v5
284+
- uses: actions/checkout@v6
285285

286286
- name: Update latest tag target
287287
run: |
@@ -291,7 +291,7 @@ jobs:
291291
git push -f origin pm${{ inputs.pm-version-major }}-latest
292292
293293
- name: Download artifacts
294-
uses: actions/download-artifact@v6
294+
uses: actions/download-artifact@v7
295295
with:
296296
path: ${{ github.workspace }}
297297
pattern: "*PHP-${{ inputs.php-version-base }}-*-PM${{ inputs.pm-version-major }}"
@@ -301,7 +301,7 @@ jobs:
301301
curl -L https://raw.githubusercontent.com/php/php-src/refs/heads/PHP-${{ inputs.php-version-base }}/.gdbinit -o Z-PHP-${{ inputs.php-version-base }}.gdbinit
302302
303303
- name: Upload .gdbinit artifact
304-
uses: actions/upload-artifact@v5
304+
uses: actions/upload-artifact@v6
305305
with:
306306
name: PHP-${{ inputs.php-version-base }}.gdbinit
307307
path: |

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: Download artifacts
49-
uses: actions/download-artifact@v6
49+
uses: actions/download-artifact@v7
5050
with:
5151
path: ${{ github.workspace }}
5252

0 commit comments

Comments
 (0)