Skip to content

Commit ba09753

Browse files
Bump actions/checkout from 6 to 7 (#2488)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b9e0990 commit ba09753

7 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/check-dist.yml

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

2424
steps:
25-
- uses: actions/checkout@v6
25+
- uses: actions/checkout@v7
2626

2727
- name: Set Node.js 24.x
2828
uses: actions/setup-node@v6

.github/workflows/codeql-analysis.yml

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

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v6
42+
uses: actions/checkout@v7
4343

4444
- name: Initialize CodeQL
4545
uses: github/codeql-action/init@v4

.github/workflows/licensed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
runs-on: ubuntu-latest
1010
name: Check licenses
1111
steps:
12-
- uses: actions/checkout@v6
12+
- uses: actions/checkout@v7
1313
- run: npm ci
1414
- run: npm run licensed-check

.github/workflows/publish-immutable-actions.yml

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

1515
steps:
1616
- name: Checking out
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@v7
1818
- name: Publish
1919
id: publish
2020
uses: actions/publish-immutable-action@v0.0.4

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-node@v6
2020
with:
2121
node-version: 24.x
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323
- run: npm ci
2424
- run: npm run build
2525
- run: npm run format-check
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838
# Clone this repo
3939
- name: Checkout
40-
uses: actions/checkout@v6
40+
uses: actions/checkout@v7
4141

4242
# Basic checkout
4343
- name: Checkout basic
@@ -229,7 +229,7 @@ jobs:
229229
steps:
230230
# Clone this repo
231231
- name: Checkout
232-
uses: actions/checkout@v6
232+
uses: actions/checkout@v7
233233

234234
# Basic checkout using git
235235
- name: Checkout basic
@@ -261,7 +261,7 @@ jobs:
261261
steps:
262262
# Clone this repo
263263
- name: Checkout
264-
uses: actions/checkout@v6
264+
uses: actions/checkout@v7
265265

266266
# Basic checkout using git
267267
- name: Checkout basic
@@ -291,7 +291,7 @@ jobs:
291291
steps:
292292
# Clone this repo
293293
- name: Checkout
294-
uses: actions/checkout@v6
294+
uses: actions/checkout@v7
295295
with:
296296
path: localClone
297297

@@ -319,7 +319,7 @@ jobs:
319319
320320
# needed to make checkout post cleanup succeed
321321
- name: Fix Checkout v6
322-
uses: actions/checkout@v6
322+
uses: actions/checkout@v7
323323
with:
324324
path: localClone
325325

@@ -328,7 +328,7 @@ jobs:
328328
steps:
329329
# Clone this repo
330330
- name: Checkout
331-
uses: actions/checkout@v6
331+
uses: actions/checkout@v7
332332
with:
333333
path: actions-checkout
334334

.github/workflows/update-main-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# Note this update workflow can also be used as a rollback tool.
2424
# For that reason, it's best to pin `actions/checkout` to a known, stable version
2525
# (typically, about two releases back).
26-
- uses: actions/checkout@v6
26+
- uses: actions/checkout@v7
2727
with:
2828
fetch-depth: 0
2929
- name: Git config

.github/workflows/update-test-ubuntu-git.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 repository
29-
uses: actions/checkout@v6
29+
uses: actions/checkout@v7
3030

3131
# Use `docker/login-action` to log in to GHCR.io.
3232
# Once published, the packages are scoped to the account defined here.

0 commit comments

Comments
 (0)