From a98ae2c46e4d293dfa49d53ddda377ed05b0560d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 09:11:12 +0000 Subject: [PATCH] chore(ci)(deps): bump actions/setup-python from 6 to 7 Bumps [actions/setup-python](https://github.com/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) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yml | 2 +- .github/workflows/Publish.yml | 2 +- .github/workflows/deploy-docs.yml | 2 +- .github/workflows/type-check.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3e6c9328..bc68f15a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -44,7 +44,7 @@ jobs: - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} cache: pip diff --git a/.github/workflows/Publish.yml b/.github/workflows/Publish.yml index 4f7589b8..63c6fa67 100644 --- a/.github/workflows/Publish.yml +++ b/.github/workflows/Publish.yml @@ -20,7 +20,7 @@ jobs: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.12" diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 04bab40e..093b686f 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v7 - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.14" cache: pip diff --git a/.github/workflows/type-check.yml b/.github/workflows/type-check.yml index 103208f2..21619aaa 100644 --- a/.github/workflows/type-check.yml +++ b/.github/workflows/type-check.yml @@ -35,7 +35,7 @@ jobs: - uses: actions/checkout@v7 - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: # The config pins `python_version = "3.11"` (the support floor); the # interpreter version only needs to be >= that for installation.