From 2947d569252790d54d405086ce1eca9bffdf0971 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:16:32 +0000 Subject: [PATCH] Bump the ci-actions group with 4 updates Bumps the ci-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python). Updates `actions/checkout` from 5 to 6 - [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/v5...v6) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) Updates `sigstore/gh-action-sigstore-python` from 3.1.0 to 3.2.0 - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Changelog](https://github.com/sigstore/gh-action-sigstore-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/sigstore/gh-action-sigstore-python/compare/v3.1.0...v3.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/auto_test.yml | 2 +- .github/workflows/build_zipapp.yml | 8 ++++---- .github/workflows/publish_to_pypi.yml | 10 +++++----- .github/workflows/publish_to_testpypi.yml | 6 +++--- .github/workflows/test_builds.yml | 8 ++++---- 5 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/auto_test.yml b/.github/workflows/auto_test.yml index 646c40a..69c102d 100644 --- a/.github/workflows/auto_test.yml +++ b/.github/workflows/auto_test.yml @@ -17,7 +17,7 @@ jobs: python-version: ["3.14", "3.13", "3.12", "3.11", "3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/build_zipapp.yml b/.github/workflows/build_zipapp.yml index 8120c84..81a503e 100644 --- a/.github/workflows/build_zipapp.yml +++ b/.github/workflows/build_zipapp.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python @@ -22,7 +22,7 @@ jobs: run: >- python3 scripts/build_zipapp.py - name: Store the built zipapp - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: pythonfinder-zipapp path: dist/ @@ -41,12 +41,12 @@ jobs: steps: - name: Download the zipapp - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: pythonfinder-zipapp path: dist/ - name: Sign the zipapp with Sigstore - uses: sigstore/gh-action-sigstore-python@v3.1.0 + uses: sigstore/gh-action-sigstore-python@v3.2.0 with: release-signing-artifacts: false inputs: >- diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index e7e7f67..021ebcb 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python @@ -26,7 +26,7 @@ jobs: - name: Build a binary wheel and a source tarball run: python3 -m build - name: Store the distribution packages - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: python-package-distributions path: dist/ @@ -45,7 +45,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: python-package-distributions path: dist/ @@ -66,12 +66,12 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: python-package-distributions path: dist/ - name: Sign the dists with Sigstore - uses: sigstore/gh-action-sigstore-python@v3.1.0 + uses: sigstore/gh-action-sigstore-python@v3.2.0 with: release-signing-artifacts: false inputs: >- diff --git a/.github/workflows/publish_to_testpypi.yml b/.github/workflows/publish_to_testpypi.yml index 7f7b0ff..52a4eb3 100644 --- a/.github/workflows/publish_to_testpypi.yml +++ b/.github/workflows/publish_to_testpypi.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python @@ -27,7 +27,7 @@ jobs: - name: Build a binary wheel and a source tarball run: python3 -m build - name: Store the distribution packages - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: python-package-distributions path: dist/ @@ -47,7 +47,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: python-package-distributions path: dist/ diff --git a/.github/workflows/test_builds.yml b/.github/workflows/test_builds.yml index 8d50d44..ac91feb 100644 --- a/.github/workflows/test_builds.yml +++ b/.github/workflows/test_builds.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python @@ -23,7 +23,7 @@ jobs: run: >- python3 scripts/build_zipapp.py - name: Store the built zipapp - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: pythonfinder-zipapp path: dist/ @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python @@ -50,7 +50,7 @@ jobs: - name: Build a binary wheel and a source tarball run: python3 -m build - name: Store the distribution packages - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: python-package-distributions path: dist/