Skip to content

Commit 99cd81c

Browse files
committed
Update GitHub Action workflows to actions/checkout@v4 (8.3+)
This applies the upgrade for workflows that have been added in the PHP-8.3 branch.
1 parent 4badb85 commit 99cd81c

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/nightly.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -751,36 +751,36 @@ 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
778-
uses: actions/checkout@v3
778+
uses: actions/checkout@v4
779779
with:
780780
repository: xdebug/xdebug
781781
path: xdebug
782782
- name: git checkout yaml
783-
uses: actions/checkout@v3
783+
uses: actions/checkout@v4
784784
with:
785785
repository: php/pecl-file_formats-yaml
786786
path: yaml

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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)