From 5a4554e74e982798cac2539f3ea4fc6d0d88cd6f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 22:12:29 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/download-artifact](https://github.com/actions/download-artifact), [actions/upload-artifact](https://github.com/actions/upload-artifact), [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). 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 `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 `geekyeggo/delete-artifact` from 5 to 6 - [Release notes](https://github.com/geekyeggo/delete-artifact/releases) - [Changelog](https://github.com/GeekyEggo/delete-artifact/blob/main/CHANGELOG.md) - [Commits](https://github.com/geekyeggo/delete-artifact/compare/v5...v6) Updates `pypa/gh-action-pypi-publish` from 1.13.0 to 1.14.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.13.0...v1.14.0) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: geekyeggo/delete-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- .github/workflows/ci.yml | 6 +++--- .github/workflows/pypi.yml | 10 +++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f09e51a1..7d25bc0b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,20 +66,20 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Download artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: merge-multiple: true pattern: plugin-wheel-* path: dist - name: List artifacts ๐Ÿ“ƒ run: ls -al dist/ - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 name: Upload build artifacts ๐Ÿ“ฆ with: name: plugin-wheels retention-days: 7 path: dist - name: Delete individual artifacts ๐Ÿšฎ - uses: geekyeggo/delete-artifact@v5 + uses: geekyeggo/delete-artifact@v6 with: name: plugin-wheel-* diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6a092286..a6b82b595 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,7 +78,7 @@ jobs: run: tar cf /tmp/env.tar .venv node_modules - name: Upload environment - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: environment retention-days: 1 @@ -106,7 +106,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} - name: Download environment - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: environment path: /tmp @@ -180,7 +180,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} - name: Download environment - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: environment path: /tmp diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 92fe784d6..ca78238d7 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -79,7 +79,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Download build artifacts ๐Ÿ“ฆ - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: merge-multiple: true pattern: plugin-wheel-* @@ -116,7 +116,7 @@ jobs: contents: write steps: - name: Download build artifacts ๐Ÿ“ฆ - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: merge-multiple: true pattern: plugin-wheel-* @@ -147,21 +147,21 @@ jobs: contents: write id-token: write steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: merge-multiple: true pattern: plugin-wheel-* path: dist # Try uploading to Test PyPI first, in case something fails. - name: Publish to Test PyPI ๐Ÿงช - uses: pypa/gh-action-pypi-publish@v1.13.0 + uses: pypa/gh-action-pypi-publish@v1.14.0 with: repository-url: https://test.pypi.org/legacy/ packages-dir: dist/ skip-existing: true attestations: false - name: Publish to PyPI ๐Ÿš€ - uses: pypa/gh-action-pypi-publish@v1.13.0 + uses: pypa/gh-action-pypi-publish@v1.14.0 with: packages-dir: dist/ skip-existing: true