Skip to content

Commit eb7d730

Browse files
chore(deps): bump actions/checkout from 5 to 6 (#2016)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 233bdd4 commit eb7d730

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/js-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
lint:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818

1919
- name: Use Node.js ${{ matrix.node-version }}
2020
uses: actions/setup-node@v6

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
steps:
1919
- name: Checkout
2020
if: ${{ github.event_name != 'pull_request_target' }}
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: Checkout PR
2424
if: ${{ github.event_name == 'pull_request_target' }}
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
with:
2727
ref: ${{ github.event.pull_request.head.sha }}
2828
persist-credentials: false

.github/workflows/spelling.yml

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

99
steps:
1010
- name: Clone repository
11-
uses: actions/checkout@v5
11+
uses: actions/checkout@v6
1212

1313
- name: Set up Node.js
1414
uses: actions/setup-node@v6

0 commit comments

Comments
 (0)