From 59bbb82b7c2846c96201816b13f764d3d5038f2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Jul 2026 13:24:05 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/cache](https://github.com/actions/cache). 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 `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- 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: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/move-major-minor-tags.yml | 2 +- .github/workflows/reusable-pre_commit.yml | 6 +++--- .github/workflows/reusable-python-build_poetry_package.yml | 4 ++-- .../workflows/reusable-python-build_setuptools_package.yml | 4 ++-- .../workflows/reusable-python-publish_rattler_package.yml | 4 ++-- .github/workflows/reusable-python-pytest.yml | 6 +++--- .github/workflows/reusable-python-static_analysis.yml | 6 +++--- .github/workflows/reusable-version-check.yml | 2 +- .github/workflows/reusable-zizmor-advanced-security.yml | 2 +- .github/workflows/reusable-zizmor-annotate.yml | 2 +- .github/workflows/reusable-zizmor-security.yml | 2 +- 11 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/move-major-minor-tags.yml b/.github/workflows/move-major-minor-tags.yml index e8cde923..d588b1bc 100644 --- a/.github/workflows/move-major-minor-tags.yml +++ b/.github/workflows/move-major-minor-tags.yml @@ -11,7 +11,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/reusable-pre_commit.yml b/.github/workflows/reusable-pre_commit.yml index 5529cd7e..0f7d9b7e 100644 --- a/.github/workflows/reusable-pre_commit.yml +++ b/.github/workflows/reusable-pre_commit.yml @@ -53,7 +53,7 @@ jobs: depth=$(expr ${{ github.event.pull_request.commits }} + 1) echo "base-depth=$depth" echo "base-depth=$depth" >> $GITHUB_OUTPUT - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: lfs: ${{ inputs.lfs }} # for non PR events, check out to depth 1 (the default) @@ -69,7 +69,7 @@ jobs: run: | git config --local --unset-all http.https://github.com/.extraheader || [ $? -eq 5 ] git config --local --unset-all include.path || [ $? -eq 5 ] - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 with: python-version: ${{ inputs.python-version }} - name: Install uv @@ -77,7 +77,7 @@ jobs: - name: Install pre-commit with uv run: uv tool install pre-commit - name: Cache for pre-commit hooks - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pre-commit key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }} diff --git a/.github/workflows/reusable-python-build_poetry_package.yml b/.github/workflows/reusable-python-build_poetry_package.yml index 870a9c3c..3fd30674 100644 --- a/.github/workflows/reusable-python-build_poetry_package.yml +++ b/.github/workflows/reusable-python-build_poetry_package.yml @@ -66,7 +66,7 @@ jobs: version: ${{ steps.get-version.outputs.version }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: ${{ inputs.lfs }} fetch-depth: 0 @@ -94,7 +94,7 @@ jobs: JF_ACCESS_TOKEN: ${{ secrets.JFROG_ARTIFACTORY_TOKEN }} - name: Set up Python version - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: ${{ inputs.python-version }} - name: Install poetry diff --git a/.github/workflows/reusable-python-build_setuptools_package.yml b/.github/workflows/reusable-python-build_setuptools_package.yml index ba87399b..2863c4be 100644 --- a/.github/workflows/reusable-python-build_setuptools_package.yml +++ b/.github/workflows/reusable-python-build_setuptools_package.yml @@ -61,7 +61,7 @@ jobs: version: ${{ steps.get-version.outputs.version }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: ${{ inputs.lfs }} fetch-depth: 0 @@ -88,7 +88,7 @@ jobs: JF_URL: https://${{ secrets.JFROG_ARTIFACTORY_URL }} JF_ACCESS_TOKEN: ${{ secrets.JFROG_ARTIFACTORY_TOKEN }} - name: Set up Python version - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: ${{ inputs.python-version }} - name: Verify package installation diff --git a/.github/workflows/reusable-python-publish_rattler_package.yml b/.github/workflows/reusable-python-publish_rattler_package.yml index 8fee0696..ac9f5bec 100644 --- a/.github/workflows/reusable-python-publish_rattler_package.yml +++ b/.github/workflows/reusable-python-publish_rattler_package.yml @@ -88,13 +88,13 @@ jobs: RECIPE_PATH: ${{ inputs.recipe-path || format('{0}/{1}', inputs.source-path || '.', 'recipe.yaml') }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: ${{ inputs.lfs }} fetch-depth: 0 persist-credentials: false - name: Set up Python version - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: ${{ inputs.python-version }} - name: Generate package version diff --git a/.github/workflows/reusable-python-pytest.yml b/.github/workflows/reusable-python-pytest.yml index 53144fc8..52cfb922 100644 --- a/.github/workflows/reusable-python-pytest.yml +++ b/.github/workflows/reusable-python-pytest.yml @@ -1,4 +1,4 @@ -name: Pytest on any OS +name: Pytest on any OS on: workflow_call: @@ -121,14 +121,14 @@ jobs: shell: 'bash -l {0}' timeout-minutes: ${{ inputs.timeout-minutes }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: lfs: ${{ inputs.lfs }} fetch-depth: 0 persist-credentials: false - name: Set up Python version - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 if: ${{ inputs.package-manager == 'poetry' || inputs.package-manager == 'hatch' }} with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/reusable-python-static_analysis.yml b/.github/workflows/reusable-python-static_analysis.yml index 7b109115..6fbf6b1b 100644 --- a/.github/workflows/reusable-python-static_analysis.yml +++ b/.github/workflows/reusable-python-static_analysis.yml @@ -1,4 +1,4 @@ -name: Static analysis +name: Static analysis on: workflow_call: @@ -122,7 +122,7 @@ jobs: shell: 'bash -l {0}' timeout-minutes: ${{ inputs.timeout-minutes }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: lfs: ${{ inputs.lfs }} fetch-depth: 0 @@ -173,7 +173,7 @@ jobs: git config --local --unset-all include.path || [ $? -eq 5 ] - name: Set up Python version - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 if: ${{ inputs.package-manager == 'poetry' || inputs.package-manager == 'hatch' }} with: python-version: ${{inputs.python-version}} diff --git a/.github/workflows/reusable-version-check.yml b/.github/workflows/reusable-version-check.yml index 2329d461..566072db 100644 --- a/.github/workflows/reusable-version-check.yml +++ b/.github/workflows/reusable-version-check.yml @@ -36,7 +36,7 @@ jobs: requires-python = ">=3.12" EOF - name: Setup Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: '3.12' - name: Setup uv diff --git a/.github/workflows/reusable-zizmor-advanced-security.yml b/.github/workflows/reusable-zizmor-advanced-security.yml index 4be80944..c5d02761 100644 --- a/.github/workflows/reusable-zizmor-advanced-security.yml +++ b/.github/workflows/reusable-zizmor-advanced-security.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: persist-credentials: false diff --git a/.github/workflows/reusable-zizmor-annotate.yml b/.github/workflows/reusable-zizmor-annotate.yml index dce83fb9..4b3b772d 100644 --- a/.github/workflows/reusable-zizmor-annotate.yml +++ b/.github/workflows/reusable-zizmor-annotate.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: persist-credentials: false diff --git a/.github/workflows/reusable-zizmor-security.yml b/.github/workflows/reusable-zizmor-security.yml index bc47af71..313f6045 100644 --- a/.github/workflows/reusable-zizmor-security.yml +++ b/.github/workflows/reusable-zizmor-security.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: persist-credentials: false