From eca331553325563bd138f8f1f6f6b88461247074 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 08:53:04 +0000 Subject: [PATCH] chore(deps): bump actions/checkout in the github_actions group Bumps the github_actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `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](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github_actions ... Signed-off-by: dependabot[bot] --- .github/workflows/node-gyp.yml | 4 ++-- .github/workflows/nodejs.yml | 4 ++-- .github/workflows/python_tests.yml | 4 ++-- .github/workflows/release-please.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/node-gyp.yml b/.github/workflows/node-gyp.yml index c35978d7..f94eafff 100644 --- a/.github/workflows/node-gyp.yml +++ b/.github/workflows/node-gyp.yml @@ -29,11 +29,11 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Clone gyp-next - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: gyp-next - name: Clone nodejs/node-gyp - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: nodejs/node-gyp path: node-gyp diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index cacf8d9d..69978ff6 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -24,11 +24,11 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Clone gyp-next - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: gyp-next - name: Clone nodejs/node - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: nodejs/node path: node diff --git a/.github/workflows/python_tests.yml b/.github/workflows/python_tests.yml index ee62866e..3f86f08f 100644 --- a/.github/workflows/python_tests.yml +++ b/.github/workflows/python_tests.yml @@ -10,7 +10,7 @@ jobs: Python_lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Lint with ruff # See pyproject.toml for settings uses: astral-sh/ruff-action@v4.0.0 - run: ruff format --check --diff @@ -33,7 +33,7 @@ jobs: - os: windows-2025-vs2026 # Windows with Visual Studio 2026 python-version: 3.x steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 with: diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 56f07d58..29b910d1 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -24,7 +24,7 @@ jobs: if: ${{ needs.release-please.outputs.release_created }} # only publish on release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Build a binary wheel and a source tarball run: pipx run build - name: Store the distribution packages