From 96f3486b596d00ca0a7d12d58559e17ca4c53236 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 16:27:04 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 2 updates Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 4 to 5 - [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/v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/codespell_and_ruff.yml | 2 +- .github/workflows/tox-gh.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codespell_and_ruff.yml b/.github/workflows/codespell_and_ruff.yml index 9e7382a..dfa6777 100644 --- a/.github/workflows/codespell_and_ruff.yml +++ b/.github/workflows/codespell_and_ruff.yml @@ -13,7 +13,7 @@ jobs: codespell_and_ruff: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: pip install --user codespell[toml] ruff - run: codespell --ignore-words-list=mathes,millon,ned --skip="*.csv,*.rss" - run: ruff --output-format=github --ignore=E401,E402,E701,E712,E713,E721,E722,E731,E741,F401,F403,F405,F811,F821,F841 diff --git a/.github/workflows/tox-gh.yml b/.github/workflows/tox-gh.yml index 1fd47e0..c9ec6c6 100644 --- a/.github/workflows/tox-gh.yml +++ b/.github/workflows/tox-gh.yml @@ -12,9 +12,9 @@ jobs: python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10'] name: main steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - if: matrix.python-version != '2.7' - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - if: matrix.python-version == '2.7'