Skip to content

Commit 391d813

Browse files
committed
Merge branch 'PHP-8.3' into PHP-8.4
* PHP-8.3: Update GitHub Action workflows to `actions/checkout@v5`
2 parents cbb9ee8 + fdd2747 commit 391d813

File tree

4 files changed

+28
-28
lines changed

4 files changed

+28
-28
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 sphinx-design sphinxawesome-theme rstfmt
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
@@ -207,7 +207,7 @@ jobs:
207207
runs-on: ubuntu-${{ matrix.asan && inputs.asan_ubuntu_version || inputs.ubuntu_version }}
208208
steps:
209209
- name: git checkout
210-
uses: actions/checkout@v4
210+
uses: actions/checkout@v5
211211
with:
212212
ref: ${{ inputs.branch }}
213213
- name: Create MSSQL container
@@ -310,7 +310,7 @@ jobs:
310310
FIREBIRD_PASSWORD: test
311311
steps:
312312
- name: git checkout
313-
uses: actions/checkout@v4
313+
uses: actions/checkout@v5
314314
with:
315315
ref: ${{ inputs.branch }}
316316
- name: apt
@@ -381,7 +381,7 @@ jobs:
381381
runs-on: macos-${{ matrix.os }}
382382
steps:
383383
- name: git checkout
384-
uses: actions/checkout@v4
384+
uses: actions/checkout@v5
385385
with:
386386
ref: ${{ inputs.branch }}
387387
- name: brew
@@ -459,7 +459,7 @@ jobs:
459459
runs-on: ubuntu-22.04
460460
steps:
461461
- name: git checkout
462-
uses: actions/checkout@v4
462+
uses: actions/checkout@v5
463463
with:
464464
ref: ${{ inputs.branch }}
465465
- name: Create MSSQL container
@@ -513,7 +513,7 @@ jobs:
513513
USE_TRACKED_ALLOC: 1
514514
steps:
515515
- name: git checkout
516-
uses: actions/checkout@v4
516+
uses: actions/checkout@v5
517517
with:
518518
ref: ${{ inputs.branch }}
519519
- name: apt
@@ -717,7 +717,7 @@ jobs:
717717
runs-on: ubuntu-${{ inputs.ubuntu_version }}
718718
steps:
719719
- name: git checkout
720-
uses: actions/checkout@v4
720+
uses: actions/checkout@v5
721721
with:
722722
ref: ${{ inputs.branch }}
723723
- name: Create MSSQL container
@@ -785,7 +785,7 @@ jobs:
785785
runs-on: ubuntu-${{ inputs.ubuntu_version }}
786786
steps:
787787
- name: git checkout
788-
uses: actions/checkout@v4
788+
uses: actions/checkout@v5
789789
with:
790790
ref: ${{ inputs.branch }}
791791
- name: apt
@@ -877,7 +877,7 @@ jobs:
877877
runs-on: ubuntu-${{ inputs.ubuntu_version }}
878878
steps:
879879
- name: git checkout
880-
uses: actions/checkout@v4
880+
uses: actions/checkout@v5
881881
with:
882882
ref: ${{ inputs.branch }}
883883
- name: apt
@@ -927,38 +927,38 @@ jobs:
927927
CXX: ccache g++
928928
steps:
929929
- name: git checkout PHP
930-
uses: actions/checkout@v4
930+
uses: actions/checkout@v5
931931
with:
932932
path: php
933933
ref: ${{ inputs.branch }}
934934
- name: git checkout apcu
935-
uses: actions/checkout@v4
935+
uses: actions/checkout@v5
936936
with:
937937
repository: krakjoe/apcu
938938
path: apcu
939939
- name: git checkout imagick
940-
uses: actions/checkout@v4
940+
uses: actions/checkout@v5
941941
with:
942942
repository: Imagick/imagick
943943
path: imagick
944944
- name: git checkout memcached
945-
uses: actions/checkout@v4
945+
uses: actions/checkout@v5
946946
with:
947947
repository: php-memcached-dev/php-memcached
948948
path: memcached
949949
- name: git checkout redis
950-
uses: actions/checkout@v4
950+
uses: actions/checkout@v5
951951
with:
952952
repository: phpredis/phpredis
953953
path: redis
954954
- name: git checkout xdebug
955955
if: false
956-
uses: actions/checkout@v4
956+
uses: actions/checkout@v5
957957
with:
958958
repository: xdebug/xdebug
959959
path: xdebug
960960
- name: git checkout yaml
961-
uses: actions/checkout@v4
961+
uses: actions/checkout@v5
962962
with:
963963
repository: php/pecl-file_formats-yaml
964964
path: yaml
@@ -1068,7 +1068,7 @@ jobs:
10681068
- name: git config
10691069
run: git config --global core.autocrlf false && git config --global core.eol lf
10701070
- name: git checkout
1071-
uses: actions/checkout@v4
1071+
uses: actions/checkout@v5
10721072
with:
10731073
ref: ${{ inputs.branch }}
10741074
- name: Setup
@@ -1089,7 +1089,7 @@ jobs:
10891089
timeout-minutes: 50
10901090
steps:
10911091
- name: git checkout
1092-
uses: actions/checkout@v4
1092+
uses: actions/checkout@v5
10931093
with:
10941094
ref: ${{ inputs.branch }}
10951095
- name: FreeBSD

.github/workflows/push.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ubuntu-${{ !matrix.asan && '22' || '24' }}.04
8282
steps:
8383
- name: git checkout
84-
uses: actions/checkout@v4
84+
uses: actions/checkout@v5
8585
- name: apt
8686
uses: ./.github/actions/apt-x64
8787
- name: System info
@@ -155,7 +155,7 @@ jobs:
155155
MYSQL_ROOT_PASSWORD: root
156156
steps:
157157
- name: git checkout
158-
uses: actions/checkout@v4
158+
uses: actions/checkout@v5
159159
- name: apt
160160
uses: ./.github/actions/apt-x32
161161
- name: ccache
@@ -192,7 +192,7 @@ jobs:
192192
runs-on: macos-${{ matrix.os }}
193193
steps:
194194
- name: git checkout
195-
uses: actions/checkout@v4
195+
uses: actions/checkout@v5
196196
- name: brew
197197
uses: ./.github/actions/brew
198198
- name: ccache
@@ -239,7 +239,7 @@ jobs:
239239
- name: git config
240240
run: git config --global core.autocrlf false && git config --global core.eol lf
241241
- name: git checkout
242-
uses: actions/checkout@v4
242+
uses: actions/checkout@v5
243243
- name: Setup
244244
uses: ./.github/actions/setup-windows
245245
- name: Build
@@ -252,7 +252,7 @@ jobs:
252252
runs-on: ubuntu-22.04
253253
steps:
254254
- name: git checkout
255-
uses: actions/checkout@v4
255+
uses: actions/checkout@v5
256256
with:
257257
fetch-depth: 0
258258
# ASLR can cause a lot of noise due to missed sse opportunities for memcpy
@@ -316,7 +316,7 @@ jobs:
316316
mysql -uroot -proot -e "CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'wordpress'; FLUSH PRIVILEGES;"
317317
mysql -uroot -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'wordpress'@'localhost' WITH GRANT OPTION;"
318318
- name: git checkout benchmarking-data
319-
uses: actions/checkout@v4
319+
uses: actions/checkout@v5
320320
with:
321321
repository: php/benchmarking-data
322322
ssh-key: ${{ secrets.BENCHMARKING_DATA_DEPLOY_KEY }}
@@ -359,6 +359,6 @@ jobs:
359359
timeout-minutes: 50
360360
steps:
361361
- name: git checkout
362-
uses: actions/checkout@v4
362+
uses: actions/checkout@v5
363363
- name: FreeBSD
364364
uses: ./.github/actions/freebsd

.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)