Skip to content

Commit 985b00f

Browse files
build(deps): bump actions/checkout from 5 to 6 (#3847)
1 parent a835893 commit 985b00f

File tree

11 files changed

+14
-14
lines changed

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@v5
31+
uses: actions/checkout@v6
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@v5
37+
uses: actions/checkout@v6
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@v5
88+
uses: actions/checkout@v6
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@v5
41+
uses: actions/checkout@v6
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@v5
46+
uses: actions/checkout@v6
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@v5
18+
uses: actions/checkout@v6
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@v5
8+
- uses: actions/checkout@v6
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@v5
25+
uses: actions/checkout@v6
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
@@ -46,7 +46,7 @@ jobs:
4646
continue-on-error: ${{ matrix.experimental }}
4747
steps:
4848
- name: Checkout code
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050

5151
- name: Setup PHP ${{ matrix.php }}
5252
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@v5
25+
- uses: actions/checkout@v6
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@v5
55+
uses: actions/checkout@v6
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@v5
134+
uses: actions/checkout@v6
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@v5
224+
- uses: actions/checkout@v6
225225
with:
226226
ref: ${{ needs.tag_and_release.outputs.tag_name }}
227227

0 commit comments

Comments
 (0)