Skip to content

Commit 2905ef2

Browse files
Bump actions/checkout from 4 to 5 (#3599)
1 parent 4dcc829 commit 2905ef2

11 files changed

+14
-14
lines changed

.github/workflows/build-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
2929
3030
- name: Checkout the specific branch/ref
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
ref: ${{ env.SOURCE_REF }}
3434
fetch-depth: 0

.github/workflows/bump-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
extensions: mbstring, json
3535

3636
- name: Checkout ${{ github.ref_name }} branch
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
ref: ${{ github.ref_name }}
4040
fetch-depth: 0
@@ -85,7 +85,7 @@ jobs:
8585
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
8686
8787
- name: Checkout ${{ github.ref_name }} branch
88-
uses: actions/checkout@v4
88+
uses: actions/checkout@v5
8989
with:
9090
ref: ${{ github.ref_name }}
9191
fetch-depth: 0

.github/workflows/codeql-analysis.yml

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

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

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/cs-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
uses: korelstar/xmllint-problem-matcher@v1
4444

4545
- name: Checkout code
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747

4848
# Validate the composer.json file.
4949
# @link https://getcomposer.org/doc/03-cli.md#validate

.github/workflows/dependency-review.yml

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

1616
steps:
1717
- name: Check out the source code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
# Checks for dependencies with known vulnerabilities
2121
- name: Review dependencies

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: New tag
66
runs-on: ubuntu-24.04
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@v5
99
- name: Build # Remove or modify this step as needed
1010
run: |
1111
npm ci

.github/workflows/e2e-tests.yml

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

2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Refresh Composer autoload files
2828
run: composer dump-autoload --classmap-authoritative

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
continue-on-error: ${{ matrix.experimental }}
4848
steps:
4949
- name: Checkout code
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151

5252
- name: Setup PHP ${{ matrix.php }}
5353
uses: shivammathur/setup-php@v2

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-24.04
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
- name: Read .nvmrc
2828
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV

.github/workflows/release-plugin.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
fi
5353
5454
- name: Checkout the specific branch/ref
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
with:
5757
ref: ${{ env.SOURCE_REF }}
5858
fetch-depth: 0
@@ -131,7 +131,7 @@ jobs:
131131
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
132132
133133
- name: Checkout the specific branch/ref
134-
uses: actions/checkout@v4
134+
uses: actions/checkout@v5
135135
with:
136136
ref: ${{ env.SOURCE_REF }}
137137
fetch-depth: 0
@@ -221,7 +221,7 @@ jobs:
221221
echo "Skip Tests: ${{ env.SKIP_TESTS }}"
222222
echo "Version: ${{ env.VERSION }}"
223223
224-
- uses: actions/checkout@v4
224+
- uses: actions/checkout@v5
225225
with:
226226
ref: ${{ needs.tag_and_release.outputs.tag_name }}
227227

0 commit comments

Comments
 (0)