Skip to content

Commit ab8d119

Browse files
chore(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f21f043 commit ab8d119

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
node-version: [20.x, 22.x, 24.x]
1515

1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Use Node.js ${{ matrix.node-version }}
1919
uses: actions/setup-node@v6
2020
with:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5757
steps:
5858
- name: Checkout repository
59-
uses: actions/checkout@v5
59+
uses: actions/checkout@v6
6060

6161
# Initializes the CodeQL tools for scanning.
6262
- name: Initialize CodeQL

.github/workflows/release-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
source: ${{ github.event.release.tag_name }}
1717
find: 'v'
1818
replace: ''
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- uses: rickstaa/action-create-tag@v1
2121
with:
2222
tag: ${{ steps.tag_without_v.outputs.value }}
2323
message: 'Tagged documentation release'
2424
deploy_docs:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
with:
2929
ref: main
3030
- name: Setup Python

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Release to npm
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- name: Use Node.js 22.x
1313
uses: actions/setup-node@v6
1414
with:

0 commit comments

Comments
 (0)