From 9c14c9f1adbd6181c0ef2e985b6a988e8b4d7f50 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 05:52:20 +0000 Subject: [PATCH] Bump actions/setup-python from 5 to 7 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 7. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...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/pypi_install.yml | 2 +- .github/workflows/pytest.yml | 2 +- .github/workflows/test_install.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pypi_install.yml b/.github/workflows/pypi_install.yml index 52ea2b10..c4c04964 100644 --- a/.github/workflows/pypi_install.yml +++ b/.github/workflows/pypi_install.yml @@ -12,7 +12,7 @@ jobs: steps: # Setup steps - name: Setup python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: "3.12" - name: Checkout repo diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index bedef1c1..c25f3c90 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -31,7 +31,7 @@ jobs: - name: Checkout repo uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index 58f94136..86ba5f94 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -23,7 +23,7 @@ jobs: python-version: ["3.11", "3.12"] steps: - name: Setup python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} - name: Checkout repo