From 52e569be182dc017bfb67624889029d857e9f8f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 23:23:29 +0000 Subject: [PATCH] Bump the github-action-dependencies group with 4 updates Bumps the github-action-dependencies group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) 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.2.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6.2.0...v6.3.0) Updates `release-drafter/release-drafter` from 7.3.1 to 7.5.1 - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](https://github.com/release-drafter/release-drafter/compare/v7.3.1...v7.5.1) 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-action-dependencies - dependency-name: actions/setup-python dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: release-drafter/release-drafter dependency-version: 7.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 4 ++-- .github/workflows/labeler.yml | 2 +- .github/workflows/release.yml | 6 +++--- .github/workflows/tests.yml | 10 +++++----- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index c7459ae..78cce47 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Poetry run: | @@ -35,7 +35,7 @@ jobs: poetry --version - name: Set up Python - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v6.3.0 with: python-version: "3.13" cache: "poetry" diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index ae1c373..1191007 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -17,7 +17,7 @@ jobs: contents: read steps: - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run Labeler uses: crazy-max/ghaction-github-labeler@v6.0.0 # Use this version until https://github.com/crazy-max/ghaction-github-labeler/issues/221 is fixed diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ca75bd..a6708b9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,12 +15,12 @@ jobs: pull-requests: read steps: - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 2 - name: Set up Python - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v6.3.0 with: python-version: "3.13" @@ -70,7 +70,7 @@ jobs: repository-url: https://test.pypi.org/legacy/ - name: Publish the release notes - uses: release-drafter/release-drafter@v7.3.1 + uses: release-drafter/release-drafter@v7.5.1 with: publish: ${{ steps.check-version.outputs.tag != '' }} tag: ${{ steps.check-version.outputs.tag }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d707b6f..53465d3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -39,10 +39,10 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python }} - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v6.3.0 with: python-version: ${{ matrix.python }} @@ -89,7 +89,7 @@ jobs: subprocess.run(cmd, shell=True) - name: Restore pre-commit cache - uses: actions/cache@v5 + uses: actions/cache@v6 if: matrix.session == 'pre-commit' with: path: ~/.cache/pre-commit @@ -121,12 +121,12 @@ jobs: needs: tests steps: - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Set up Python - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v6.3.0 with: python-version: "3.13"