Skip to content

Commit 359f442

Browse files
committed
Merge branch 'PHP-8.4'
* PHP-8.4: Update GitHub Action workflows to `actions/checkout@v5`
2 parents 222f751 + 391d813 commit 359f442

File tree

5 files changed

+32
-32
lines changed

5 files changed

+32
-32
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: github.repository == 'php/php-src'
1818
steps:
1919
- name: git checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Install dependencies
2222
run: pip install -r docs/requirements.txt
2323
- name: Check formatting

.github/workflows/nightly.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: [self-hosted, gentoo, ppc64]
5555
steps:
5656
- name: git checkout
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v5
5858
with:
5959
ref: ${{ inputs.branch }}
6060
- name: System info
@@ -95,7 +95,7 @@ jobs:
9595
image: 'alpine:3.20.1'
9696
steps:
9797
- name: git checkout
98-
uses: actions/checkout@v4
98+
uses: actions/checkout@v5
9999
with:
100100
ref: ${{ inputs.branch }}
101101
- name: apk
@@ -206,7 +206,7 @@ jobs:
206206
runs-on: ubuntu-${{ matrix.asan && inputs.asan_ubuntu_version || inputs.ubuntu_version }}
207207
steps:
208208
- name: git checkout
209-
uses: actions/checkout@v4
209+
uses: actions/checkout@v5
210210
with:
211211
ref: ${{ inputs.branch }}
212212
- name: Create MSSQL container
@@ -306,7 +306,7 @@ jobs:
306306
FIREBIRD_PASSWORD: test
307307
steps:
308308
- name: git checkout
309-
uses: actions/checkout@v4
309+
uses: actions/checkout@v5
310310
with:
311311
ref: ${{ inputs.branch }}
312312
- name: apt
@@ -374,7 +374,7 @@ jobs:
374374
runs-on: macos-${{ matrix.os }}
375375
steps:
376376
- name: git checkout
377-
uses: actions/checkout@v4
377+
uses: actions/checkout@v5
378378
with:
379379
ref: ${{ inputs.branch }}
380380
- name: brew
@@ -449,7 +449,7 @@ jobs:
449449
runs-on: ubuntu-22.04
450450
steps:
451451
- name: git checkout
452-
uses: actions/checkout@v4
452+
uses: actions/checkout@v5
453453
with:
454454
ref: ${{ inputs.branch }}
455455
- name: Create MSSQL container
@@ -502,7 +502,7 @@ jobs:
502502
USE_TRACKED_ALLOC: 1
503503
steps:
504504
- name: git checkout
505-
uses: actions/checkout@v4
505+
uses: actions/checkout@v5
506506
with:
507507
ref: ${{ inputs.branch }}
508508
- name: apt
@@ -705,7 +705,7 @@ jobs:
705705
runs-on: ubuntu-${{ inputs.ubuntu_version }}
706706
steps:
707707
- name: git checkout
708-
uses: actions/checkout@v4
708+
uses: actions/checkout@v5
709709
with:
710710
ref: ${{ inputs.branch }}
711711
- name: Create MSSQL container
@@ -768,7 +768,7 @@ jobs:
768768
runs-on: ubuntu-${{ inputs.ubuntu_version }}
769769
steps:
770770
- name: git checkout
771-
uses: actions/checkout@v4
771+
uses: actions/checkout@v5
772772
with:
773773
ref: ${{ inputs.branch }}
774774
- name: apt
@@ -859,7 +859,7 @@ jobs:
859859
runs-on: ubuntu-${{ inputs.ubuntu_version }}
860860
steps:
861861
- name: git checkout
862-
uses: actions/checkout@v4
862+
uses: actions/checkout@v5
863863
with:
864864
ref: ${{ inputs.branch }}
865865
- name: apt
@@ -909,38 +909,38 @@ jobs:
909909
CXX: ccache g++
910910
steps:
911911
- name: git checkout PHP
912-
uses: actions/checkout@v4
912+
uses: actions/checkout@v5
913913
with:
914914
path: php
915915
ref: ${{ inputs.branch }}
916916
- name: git checkout apcu
917-
uses: actions/checkout@v4
917+
uses: actions/checkout@v5
918918
with:
919919
repository: krakjoe/apcu
920920
path: apcu
921921
- name: git checkout imagick
922-
uses: actions/checkout@v4
922+
uses: actions/checkout@v5
923923
with:
924924
repository: Imagick/imagick
925925
path: imagick
926926
- name: git checkout memcached
927-
uses: actions/checkout@v4
927+
uses: actions/checkout@v5
928928
with:
929929
repository: php-memcached-dev/php-memcached
930930
path: memcached
931931
- name: git checkout redis
932-
uses: actions/checkout@v4
932+
uses: actions/checkout@v5
933933
with:
934934
repository: phpredis/phpredis
935935
path: redis
936936
- name: git checkout xdebug
937937
if: false
938-
uses: actions/checkout@v4
938+
uses: actions/checkout@v5
939939
with:
940940
repository: xdebug/xdebug
941941
path: xdebug
942942
- name: git checkout yaml
943-
uses: actions/checkout@v4
943+
uses: actions/checkout@v5
944944
with:
945945
repository: php/pecl-file_formats-yaml
946946
path: yaml
@@ -1050,7 +1050,7 @@ jobs:
10501050
- name: git config
10511051
run: git config --global core.autocrlf false && git config --global core.eol lf
10521052
- name: git checkout
1053-
uses: actions/checkout@v4
1053+
uses: actions/checkout@v5
10541054
with:
10551055
ref: ${{ inputs.branch }}
10561056
- name: Setup
@@ -1071,7 +1071,7 @@ jobs:
10711071
timeout-minutes: 50
10721072
steps:
10731073
- name: git checkout
1074-
uses: actions/checkout@v4
1074+
uses: actions/checkout@v5
10751075
with:
10761076
ref: ${{ inputs.branch }}
10771077
- name: FreeBSD

.github/workflows/push.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
timeout-minutes: 50
8383
steps:
8484
- name: git checkout
85-
uses: actions/checkout@v4
85+
uses: actions/checkout@v5
8686
- name: apt
8787
uses: ./.github/actions/apt-x64
8888
- name: System info
@@ -166,7 +166,7 @@ jobs:
166166
FIREBIRD_PASSWORD: test
167167
steps:
168168
- name: git checkout
169-
uses: actions/checkout@v4
169+
uses: actions/checkout@v5
170170
- name: apt
171171
uses: ./.github/actions/apt-x32
172172
- name: ccache
@@ -203,7 +203,7 @@ jobs:
203203
timeout-minutes: 50
204204
steps:
205205
- name: git checkout
206-
uses: actions/checkout@v4
206+
uses: actions/checkout@v5
207207
- name: brew
208208
uses: ./.github/actions/brew
209209
- name: ccache
@@ -250,7 +250,7 @@ jobs:
250250
- name: git config
251251
run: git config --global core.autocrlf false && git config --global core.eol lf
252252
- name: git checkout
253-
uses: actions/checkout@v4
253+
uses: actions/checkout@v5
254254
- name: Setup
255255
uses: ./.github/actions/setup-windows
256256
- name: Build
@@ -264,7 +264,7 @@ jobs:
264264
timeout-minutes: 50
265265
steps:
266266
- name: git checkout
267-
uses: actions/checkout@v4
267+
uses: actions/checkout@v5
268268
with:
269269
fetch-depth: 0
270270
# ASLR can cause a lot of noise due to missed sse opportunities for memcpy
@@ -326,7 +326,7 @@ jobs:
326326
mysql -uroot -proot -e "CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'wordpress'; FLUSH PRIVILEGES;"
327327
mysql -uroot -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'wordpress'@'localhost' WITH GRANT OPTION;"
328328
- name: git checkout benchmarking-data
329-
uses: actions/checkout@v4
329+
uses: actions/checkout@v5
330330
with:
331331
repository: php/benchmarking-data
332332
ssh-key: ${{ secrets.BENCHMARKING_DATA_DEPLOY_KEY }}
@@ -369,6 +369,6 @@ jobs:
369369
timeout-minutes: 50
370370
steps:
371371
- name: git checkout
372-
uses: actions/checkout@v4
372+
uses: actions/checkout@v5
373373
- name: FreeBSD
374374
uses: ./.github/actions/freebsd

.github/workflows/real-time-benchmark.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,21 +103,21 @@ jobs:
103103
sudo apt-get update -y
104104
sudo apt-get install -y terraform=1.5.7-*
105105
- name: Checkout benchmark suite
106-
uses: actions/checkout@v4
106+
uses: actions/checkout@v5
107107
with:
108108
repository: 'kocsismate/php-version-benchmarks'
109109
ref: 'main'
110110
fetch-depth: 1
111111
path: 'php-version-benchmarks'
112112
- name: Checkout php-src (benchmarked version)
113-
uses: actions/checkout@v4
113+
uses: actions/checkout@v5
114114
with:
115115
repository: '${{ env.REPOSITORY }}'
116116
ref: '${{ env.COMMIT }}'
117117
fetch-depth: 100
118118
path: 'php-version-benchmarks/tmp/php_${{ env.ID }}'
119119
- name: Checkout php-src (baseline version)
120-
uses: actions/checkout@v4
120+
uses: actions/checkout@v5
121121
with:
122122
repository: '${{ env.REPOSITORY }}'
123123
ref: '${{ env.BASELINE_COMMIT }}'
@@ -131,7 +131,7 @@ jobs:
131131
rm -rf ./php-version-benchmarks/docs/results
132132
- name: Checkout benchmark data
133133
if: github.event_name != 'workflow_dispatch'
134-
uses: actions/checkout@v4
134+
uses: actions/checkout@v5
135135
with:
136136
repository: php/real-time-benchmark-data
137137
ssh-key: ${{ secrets.PHP_VERSION_BENCHMARK_RESULTS_DEPLOY_KEY }}

.github/workflows/root.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
outputs:
1414
branches: ${{ steps.set-matrix.outputs.branches }}
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
# Set fetch-depth to 0 to clone the full repository
1919
# including all branches. This is required to find

0 commit comments

Comments
 (0)