Skip to content

Commit 06ab3bb

Browse files
chore(deps): bump actions/checkout in the github_actions group (#309)
Bumps the github_actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github_actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0e43f61 commit 06ab3bb

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
@@ -25,11 +25,11 @@ jobs:
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- name: Clone gyp-next
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
path: gyp-next
3131
- name: Clone nodejs/node-gyp
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
with:
3434
repository: nodejs/node-gyp
3535
path: node-gyp

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
runs-on: ${{ matrix.os }}
2323
steps:
2424
- name: Clone gyp-next
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
path: gyp-next
2828
- name: Clone nodejs/node
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
repository: nodejs/node
3232
path: node

.github/workflows/python_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
os: [macos-13, macos-latest, ubuntu-latest] # , windows-latest]
1818
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: Set up Python ${{ matrix.python-version }}
2222
uses: actions/setup-python@v5
2323
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@v4
27+
- uses: actions/checkout@v5
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)