From 06c0368a0193cc152553f6190703893749e116be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 21:43:33 +0000 Subject: [PATCH] Bump the ci-actions group across 1 directory with 3 updates Bumps the ci-actions group with 3 updates in the / directory: [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/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) Updates `sigstore/gh-action-sigstore-python` from 3.2.0 to 3.3.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.2.0...v3.3.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-actions - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build_zipapp.yml | 6 +++--- .github/workflows/publish_to_pypi.yml | 8 ++++---- .github/workflows/publish_to_testpypi.yml | 4 ++-- .github/workflows/test_builds.yml | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build_zipapp.yml b/.github/workflows/build_zipapp.yml index 81a503e..4b40336 100644 --- a/.github/workflows/build_zipapp.yml +++ b/.github/workflows/build_zipapp.yml @@ -22,7 +22,7 @@ jobs: run: >- python3 scripts/build_zipapp.py - name: Store the built zipapp - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: pythonfinder-zipapp path: dist/ @@ -41,12 +41,12 @@ jobs: steps: - name: Download the zipapp - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: pythonfinder-zipapp path: dist/ - name: Sign the zipapp with Sigstore - uses: sigstore/gh-action-sigstore-python@v3.2.0 + uses: sigstore/gh-action-sigstore-python@v3.3.0 with: release-signing-artifacts: false inputs: >- diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index 021ebcb..c94ead5 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -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@v6 + uses: actions/upload-artifact@v7 with: name: python-package-distributions path: dist/ @@ -45,7 +45,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: python-package-distributions path: dist/ @@ -66,12 +66,12 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: python-package-distributions path: dist/ - name: Sign the dists with Sigstore - uses: sigstore/gh-action-sigstore-python@v3.2.0 + uses: sigstore/gh-action-sigstore-python@v3.3.0 with: release-signing-artifacts: false inputs: >- diff --git a/.github/workflows/publish_to_testpypi.yml b/.github/workflows/publish_to_testpypi.yml index 52a4eb3..96e402e 100644 --- a/.github/workflows/publish_to_testpypi.yml +++ b/.github/workflows/publish_to_testpypi.yml @@ -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@v6 + uses: actions/upload-artifact@v7 with: name: python-package-distributions path: dist/ @@ -47,7 +47,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: python-package-distributions path: dist/ diff --git a/.github/workflows/test_builds.yml b/.github/workflows/test_builds.yml index ac91feb..d4c8ac1 100644 --- a/.github/workflows/test_builds.yml +++ b/.github/workflows/test_builds.yml @@ -23,7 +23,7 @@ jobs: run: >- python3 scripts/build_zipapp.py - name: Store the built zipapp - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: pythonfinder-zipapp path: dist/ @@ -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@v6 + uses: actions/upload-artifact@v7 with: name: python-package-distributions path: dist/