Skip to content

Commit 732b09e

Browse files
chore(deps): bump actions/checkout in the github_actions group (#324)
Bumps the github_actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `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 dependency-group: github_actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0dd0534 commit 732b09e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/node-gyp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
runs-on: ${{ matrix.os }}
2828
steps:
2929
- name: Clone gyp-next
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
path: gyp-next
3333
- name: Clone nodejs/node-gyp
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
repository: nodejs/node-gyp
3737
path: node-gyp

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
steps:
3030
- name: Clone gyp-next
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
path: gyp-next
3434
- name: Clone nodejs/node
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
with:
3737
repository: nodejs/node
3838
path: node

.github/workflows/python_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- os: macos-26
2121
python-version: 3.x
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- name: Set up Python ${{ matrix.python-version }}
2525
uses: actions/setup-python@v6
2626
with:

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
if: ${{ needs.release-please.outputs.release_created }} # only publish on release
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
- name: Build a binary wheel and a source tarball
2929
run: pipx run build
3030
- name: Store the distribution packages

0 commit comments

Comments
 (0)