From 4c076f68890d86a26195f2d98cf54711f610a403 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 08:53:14 +0000 Subject: [PATCH] chore(deps): bump the github_actions group across 1 directory with 2 updates Bumps the github_actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [astral-sh/ruff-action](https://github.com/astral-sh/ruff-action). 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) Updates `astral-sh/ruff-action` from 4.0.0 to 4.1.0 - [Release notes](https://github.com/astral-sh/ruff-action/releases) - [Commits](https://github.com/astral-sh/ruff-action/compare/v4.0.0...v4.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github_actions - dependency-name: astral-sh/ruff-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor 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 | 6 +++--- .github/workflows/release-please.yml | 2 +- 4 files changed, 8 insertions(+), 8 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..f4d5f9ae 100644 --- a/.github/workflows/python_tests.yml +++ b/.github/workflows/python_tests.yml @@ -10,9 +10,9 @@ 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 + uses: astral-sh/ruff-action@v4.1.0 - run: ruff format --check --diff - uses: wagoid/commitlint-github-action@v6 @@ -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