From 17f7b2b7627cbbd1e6e1d1b17b9378e32ebf145d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 18:02:48 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/gh-pages.yml | 2 +- .github/workflows/python-package.yml | 14 +++++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 7b48fc25b..e0bac792f 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index b815346c9..2cd0ab829 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -27,7 +27,7 @@ jobs: steps: # Checkout first: the pip cache key below hashes the requirements files, # which have to be on disk before `setup-python` runs. - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 # otherwise, you will failed to push refs to dest repo - uses: actions/setup-python@v5 diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 79fb3b54a..91654dccd 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set up Python @@ -105,7 +105,7 @@ jobs: USE_CYTHON: ${{ matrix.use-cython }} continue-on-error: ${{ matrix.experimental }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - uses: actions/setup-python@v5 @@ -149,7 +149,7 @@ jobs: env: USE_CYTHON: 'false' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - uses: actions/setup-python@v5 @@ -189,7 +189,7 @@ jobs: # works for both. kafka-version: ['3.8.1', '4.0.0'] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - uses: actions/setup-python@v5 @@ -267,7 +267,7 @@ jobs: --health-timeout 3s --health-retries 5 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - uses: actions/setup-python@v5 @@ -310,7 +310,7 @@ jobs: # pyproject.toml's [tool.cibuildwheel] (cp3*, auto64, Cython). os: [ubuntu-latest, macos-15-intel, macos-14, windows-2022] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Build wheels @@ -329,7 +329,7 @@ jobs: needs: check if: github.event_name == 'release' && github.event.action == 'created' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 name: Checkout source repository with: fetch-depth: 0