From 9e3915bf2edd7a7ae22cca54d7aa802ab01fc24e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 23:54:07 +0000 Subject: [PATCH] chore(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/auto-fix-precommit.yml | 2 +- .github/workflows/check-placeholders.yml | 2 +- .github/workflows/data-ci.yml | 2 +- .github/workflows/markdownlint.yml | 2 +- .github/workflows/precommit-ci.yml | 2 +- .github/workflows/python-ci.yml | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/auto-fix-precommit.yml b/.github/workflows/auto-fix-precommit.yml index cf2c279..d972f0b 100644 --- a/.github/workflows/auto-fix-precommit.yml +++ b/.github/workflows/auto-fix-precommit.yml @@ -59,7 +59,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.14" diff --git a/.github/workflows/check-placeholders.yml b/.github/workflows/check-placeholders.yml index f9cc12f..bb6fc76 100644 --- a/.github/workflows/check-placeholders.yml +++ b/.github/workflows/check-placeholders.yml @@ -29,7 +29,7 @@ jobs: uses: actions/checkout@v7 - name: Setup Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.14" diff --git a/.github/workflows/data-ci.yml b/.github/workflows/data-ci.yml index 9fad62a..b5305ca 100644 --- a/.github/workflows/data-ci.yml +++ b/.github/workflows/data-ci.yml @@ -136,7 +136,7 @@ jobs: uses: actions/checkout@v7 - name: Setup Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: # See: .github/instructions/yaml.instructions.md (GitHub Actions Setup Version Pins). python-version: '3.14' diff --git a/.github/workflows/markdownlint.yml b/.github/workflows/markdownlint.yml index 3ec5362..4e97cc1 100644 --- a/.github/workflows/markdownlint.yml +++ b/.github/workflows/markdownlint.yml @@ -40,7 +40,7 @@ jobs: # Python CI workflow runs pytest without node_modules, so the test would # otherwise silently skip there and leave the behavior unenforced. - name: Setup Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: '3.13' cache: 'pip' diff --git a/.github/workflows/precommit-ci.yml b/.github/workflows/precommit-ci.yml index d27d4a0..adcab1f 100644 --- a/.github/workflows/precommit-ci.yml +++ b/.github/workflows/precommit-ci.yml @@ -40,7 +40,7 @@ jobs: uses: actions/checkout@v7 - name: Setup Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: '3.14' cache: 'pip' diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 60948e4..a8f5a6c 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -26,7 +26,7 @@ jobs: uses: actions/checkout@v7 - name: Setup Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: '3.13' cache: 'pip' @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@v7 - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} cache: 'pip'