Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit df0aca3

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3: Update GitHub Action workflows to `actions/checkout@v4` (8.3+) Update GitHub Action workflows to `actions/checkout@v4`
2 parents 789867e + 99cd81c commit df0aca3

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

‎.github/workflows/nightly.yml‎

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix-include: ${{ steps.set-matrix.outputs.matrix-include }}
1616
windows-matrix-include: ${{ steps.set-matrix.outputs.windows-matrix-include }}
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
# Set fetch-depth to 0 to clone the full repository
2121
# including all branches. This is required to find
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-${{ ((matrix.branch.ref == 'PHP-8.3' || matrix.branch.ref == 'master') && !matrix.asan) && '22.04' || '20.04' }}
6464
steps:
6565
- name: git checkout
66-
uses: actions/checkout@v3
66+
uses: actions/checkout@v4
6767
with:
6868
ref: ${{ matrix.branch.ref }}
6969
- name: Create MSSQL container
@@ -163,7 +163,7 @@ jobs:
163163
MYSQL_ROOT_PASSWORD: root
164164
steps:
165165
- name: git checkout
166-
uses: actions/checkout@v3
166+
uses: actions/checkout@v4
167167
with:
168168
ref: ${{ matrix.branch.ref }}
169169
- name: apt
@@ -233,7 +233,7 @@ jobs:
233233
runs-on: macos-11
234234
steps:
235235
- name: git checkout
236-
uses: actions/checkout@v3
236+
uses: actions/checkout@v4
237237
with:
238238
ref: ${{ matrix.branch.ref }}
239239
- name: brew
@@ -300,7 +300,7 @@ jobs:
300300
runs-on: ubuntu-22.04
301301
steps:
302302
- name: git checkout
303-
uses: actions/checkout@v3
303+
uses: actions/checkout@v4
304304
- name: Create MSSQL container
305305
uses: ./.github/actions/setup-mssql
306306
- name: apt
@@ -347,7 +347,7 @@ jobs:
347347
USE_TRACKED_ALLOC: 1
348348
steps:
349349
- name: git checkout
350-
uses: actions/checkout@v3
350+
uses: actions/checkout@v4
351351
with:
352352
ref: ${{ matrix.branch.ref }}
353353
- name: apt
@@ -520,7 +520,7 @@ jobs:
520520
runs-on: ubuntu-${{ (matrix.branch.ref == 'PHP-8.3' || matrix.branch.ref == 'master') && '22.04' || '20.04' }}
521521
steps:
522522
- name: git checkout
523-
uses: actions/checkout@v3
523+
uses: actions/checkout@v4
524524
with:
525525
ref: ${{ matrix.branch.ref }}
526526
- name: Create MSSQL container
@@ -596,7 +596,7 @@ jobs:
596596
runs-on: ubuntu-${{ (matrix.branch.ref == 'PHP-8.3' || matrix.branch.ref == 'master') && '22.04' || '20.04' }}
597597
steps:
598598
- name: git checkout
599-
uses: actions/checkout@v3
599+
uses: actions/checkout@v4
600600
with:
601601
ref: ${{ matrix.branch.ref }}
602602
- name: apt
@@ -696,7 +696,7 @@ jobs:
696696
runs-on: ubuntu-${{ (matrix.branch.ref == 'PHP-8.3' || matrix.branch.ref == 'master') && '22.04' || '20.04' }}
697697
steps:
698698
- name: git checkout
699-
uses: actions/checkout@v3
699+
uses: actions/checkout@v4
700700
with:
701701
ref: ${{ matrix.branch.ref }}
702702
- name: apt
@@ -751,38 +751,38 @@ jobs:
751751
CXX: ccache g++
752752
steps:
753753
- name: git checkout PHP
754-
uses: actions/checkout@v3
754+
uses: actions/checkout@v4
755755
with:
756756
path: php
757757
- name: git checkout apcu
758-
uses: actions/checkout@v3
758+
uses: actions/checkout@v4
759759
with:
760760
repository: krakjoe/apcu
761761
path: apcu
762762
- name: git checkout imagick
763-
uses: actions/checkout@v3
763+
uses: actions/checkout@v4
764764
with:
765765
repository: Imagick/imagick
766766
path: imagick
767767
- name: git checkout memcached
768-
uses: actions/checkout@v3
768+
uses: actions/checkout@v4
769769
with:
770770
repository: php-memcached-dev/php-memcached
771771
path: memcached
772772
- name: git checkout redis
773-
uses: actions/checkout@v3
773+
uses: actions/checkout@v4
774774
with:
775775
repository: phpredis/phpredis
776776
path: redis
777777
- name: git checkout xdebug
778778
# Currently breaks due to a PHP <=8.3 version check
779779
if: false
780-
uses: actions/checkout@v3
780+
uses: actions/checkout@v4
781781
with:
782782
repository: xdebug/xdebug
783783
path: xdebug
784784
- name: git checkout yaml
785-
uses: actions/checkout@v3
785+
uses: actions/checkout@v4
786786
with:
787787
repository: php/pecl-file_formats-yaml
788788
path: yaml
@@ -878,7 +878,7 @@ jobs:
878878
- name: git config
879879
run: git config --global core.autocrlf false && git config --global core.eol lf
880880
- name: git checkout
881-
uses: actions/checkout@v3
881+
uses: actions/checkout@v4
882882
with:
883883
ref: ${{ matrix.branch.ref }}
884884
- name: Setup

‎.github/workflows/push.yml‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
image: ${{ matrix.asan && 'ubuntu:23.04' || null }}
7676
steps:
7777
- name: git checkout
78-
uses: actions/checkout@v3
78+
uses: actions/checkout@v4
7979
- name: apt
8080
uses: ./.github/actions/apt-x64
8181
- name: System info
@@ -138,7 +138,7 @@ jobs:
138138
runs-on: macos-11
139139
steps:
140140
- name: git checkout
141-
uses: actions/checkout@v3
141+
uses: actions/checkout@v4
142142
- name: brew
143143
uses: ./.github/actions/brew
144144
- name: ccache
@@ -185,7 +185,7 @@ jobs:
185185
- name: git config
186186
run: git config --global core.autocrlf false && git config --global core.eol lf
187187
- name: git checkout
188-
uses: actions/checkout@v3
188+
uses: actions/checkout@v4
189189
- name: Setup
190190
uses: ./.github/actions/setup-windows
191191
- name: Build
@@ -198,7 +198,7 @@ jobs:
198198
runs-on: ubuntu-22.04
199199
steps:
200200
- name: git checkout
201-
uses: actions/checkout@v3
201+
uses: actions/checkout@v4
202202
with:
203203
fetch-depth: 0
204204
- name: apt
@@ -257,7 +257,7 @@ jobs:
257257
mysql -uroot -proot -e "CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'wordpress'; FLUSH PRIVILEGES;"
258258
mysql -uroot -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'wordpress'@'localhost' WITH GRANT OPTION;"
259259
- name: git checkout benchmarking-data
260-
uses: actions/checkout@v3
260+
uses: actions/checkout@v4
261261
with:
262262
repository: php/benchmarking-data
263263
ssh-key: ${{ secrets.BENCHMARKING_DATA_DEPLOY_KEY }}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /