Skip to content

Commit 0c75908

Browse files
authored
Merge pull request #701 from PHPCSStandards/dependabot/github_actions/actions/checkout-5
GH Actions: Bump actions/checkout from 4 to 5
2 parents 7163819 + 00834db commit 0c75908

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/basics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

3131
- name: Install PHP
3232
uses: shivammathur/setup-php@v2

.github/workflows/quicktest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: Checkout code
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050

5151
# On stable PHPCS versions, allow for PHP deprecation notices.
5252
# Unit tests don't need to fail on those for stable releases where those issues won't get fixed anymore.

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout code
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
- name: Install PHP
4444
uses: shivammathur/setup-php@v2
@@ -161,7 +161,7 @@ jobs:
161161

162162
steps:
163163
- name: Checkout code
164-
uses: actions/checkout@v4
164+
uses: actions/checkout@v5
165165

166166
# On stable PHPCS versions, allow for PHP deprecation notices.
167167
# Unit tests don't need to fail on those for stable releases where those issues won't get fixed anymore.
@@ -294,7 +294,7 @@ jobs:
294294

295295
steps:
296296
- name: Checkout code
297-
uses: actions/checkout@v4
297+
uses: actions/checkout@v5
298298

299299
# On stable PHPCS versions, allow for PHP deprecation notices.
300300
# Unit tests don't need to fail on those for stable releases where those issues won't get fixed anymore.

.github/workflows/update-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
fi
5959
6060
- name: Checkout code
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262
with:
6363
ref: ${{ steps.base_branch.outputs.BRANCH }}
6464
# fetch-depth is needed to allow for retrieving the last tag for a non-tag workflow run.

.github/workflows/update-phpcs-versionnr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
echo "PR_BRANCH=feature/getversiontest-update-phpcs-version" >> "$GITHUB_OUTPUT"
5353
5454
- name: Checkout code
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
with:
5757
ref: ${{ steps.branches.outputs.BASE }}
5858

0 commit comments

Comments
 (0)