Skip to content

Commit fdd2747

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

File tree

3 files changed

+27
-27
lines changed

3 files changed

+27
-27
lines changed

.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
@@ -77,7 +77,7 @@ jobs:
7777
runs-on: ubuntu-${{ !matrix.asan && '22' || '24' }}.04
7878
steps:
7979
- name: git checkout
80-
uses: actions/checkout@v4
80+
uses: actions/checkout@v5
8181
- name: apt
8282
uses: ./.github/actions/apt-x64
8383
- name: System info
@@ -154,7 +154,7 @@ jobs:
154154
MYSQL_ROOT_PASSWORD: root
155155
steps:
156156
- name: git checkout
157-
uses: actions/checkout@v4
157+
uses: actions/checkout@v5
158158
- name: apt
159159
uses: ./.github/actions/apt-x32
160160
- name: ccache
@@ -184,7 +184,7 @@ jobs:
184184
runs-on: macos-14
185185
steps:
186186
- name: git checkout
187-
uses: actions/checkout@v4
187+
uses: actions/checkout@v5
188188
- name: brew
189189
uses: ./.github/actions/brew
190190
- name: ccache
@@ -232,7 +232,7 @@ jobs:
232232
- name: git config
233233
run: git config --global core.autocrlf false && git config --global core.eol lf
234234
- name: git checkout
235-
uses: actions/checkout@v4
235+
uses: actions/checkout@v5
236236
- name: Setup
237237
uses: ./.github/actions/setup-windows
238238
- name: Build
@@ -245,7 +245,7 @@ jobs:
245245
runs-on: ubuntu-22.04
246246
steps:
247247
- name: git checkout
248-
uses: actions/checkout@v4
248+
uses: actions/checkout@v5
249249
with:
250250
fetch-depth: 0
251251
- name: apt
@@ -305,7 +305,7 @@ jobs:
305305
mysql -uroot -proot -e "CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'wordpress'; FLUSH PRIVILEGES;"
306306
mysql -uroot -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'wordpress'@'localhost' WITH GRANT OPTION;"
307307
- name: git checkout benchmarking-data
308-
uses: actions/checkout@v4
308+
uses: actions/checkout@v5
309309
with:
310310
repository: php/benchmarking-data
311311
ssh-key: ${{ secrets.BENCHMARKING_DATA_DEPLOY_KEY }}
@@ -343,6 +343,6 @@ jobs:
343343
timeout-minutes: 50
344344
steps:
345345
- name: git checkout
346-
uses: actions/checkout@v4
346+
uses: actions/checkout@v5
347347
- name: FreeBSD
348348
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)