From b3b71e9133e7b32c1c5f8fef5b4906776fba1b53 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 07:04:06 +0000 Subject: [PATCH] chore(deps): bump actions/setup-python from 6.3.0 to 7.0.0 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 6.3.0 to 7.0.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6.3.0...v7.0.0) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2ee906e..9cf6210 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,14 +17,14 @@ jobs: python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v7.0.0 - - uses: actions/setup-python@v6.3.0 + - uses: actions/setup-python@v7.0.0 id: target-python with: python-version: "${{ matrix.python-version }}" # poetry >=2.3 requires Python >=3.10, so install it under a fixed # interpreter and target the matrix Python via `poetry env use`. This keeps # the project tested on every matrix version (including 3.9). - - uses: actions/setup-python@v6.3.0 + - uses: actions/setup-python@v7.0.0 with: python-version: "3.12" - run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09307a8..bc7d0c7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: contents: write steps: - uses: actions/checkout@v7.0.0 - - uses: actions/setup-python@v6.3.0 + - uses: actions/setup-python@v7.0.0 with: python-version: 3.12 - run: |