Skip to content

Commit ba59149

Browse files
GH Actions: Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 42f42a2 commit ba59149

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/cs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: Install PHP
2727
uses: shivammathur/setup-php@v2
@@ -117,7 +117,7 @@ jobs:
117117

118118
steps:
119119
- name: Checkout code
120-
uses: actions/checkout@v4
120+
uses: actions/checkout@v5
121121

122122
# Updating the lists can fail intermittently, typically after Microsoft has released a new package.
123123
# This should not be blocking for this job, so ignore any errors from this step.

.github/workflows/quicktest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131

3232
# Updating the lists can fail intermittently, typically after Microsoft has released a new package.
3333
# This should not be blocking for this job, so ignore any errors from this step.
@@ -116,7 +116,7 @@ jobs:
116116

117117
steps:
118118
- name: Checkout code
119-
uses: actions/checkout@v4
119+
uses: actions/checkout@v5
120120

121121
# On stable PHPCS versions, allow for PHP deprecation notices.
122122
# 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout code
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434

3535
# Updating the lists can fail intermittently, typically after Microsoft has released a new package.
3636
# This should not be blocking for this job, so ignore any errors from this step.
@@ -162,7 +162,7 @@ jobs:
162162

163163
steps:
164164
- name: Checkout code
165-
uses: actions/checkout@v4
165+
uses: actions/checkout@v5
166166

167167
- name: Setup ini config
168168
id: set_ini

.github/workflows/update-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
fi
4949
5050
- name: Checkout code
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252
with:
5353
ref: ${{ steps.base_branch.outputs.BRANCH }}
5454

0 commit comments

Comments
 (0)