From f38b69b9e9a16cb0cb7c66b4bee421eb3842c3c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 21:12:27 +0000 Subject: [PATCH] Bump the dev-dependencies group with 2 updates Bumps the dev-dependencies group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). 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) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 09f12fa..49e4f51 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: - name: Zip chrome run: zip -qq -r chrome.zip * working-directory: dist/chrome_prod - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: chrome path: dist/chrome_prod/chrome.zip @@ -40,7 +40,7 @@ jobs: - name: Zip firefox run: zip -qq -r firefox.zip * working-directory: dist/firefox_prod - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: firefox path: dist/firefox_prod/firefox.zip @@ -51,7 +51,7 @@ jobs: if: github.ref == 'refs/heads/master' steps: - name: Download extension - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: chrome - name: Publish Chrome @@ -72,7 +72,7 @@ jobs: - name: Zip source run: zip -qq -r src.zip * - name: Download extension - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: firefox - name: Publish Firefox @@ -92,7 +92,7 @@ jobs: if: github.ref == 'refs/heads/master' steps: - name: Download extension - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 - name: Release uses: softprops/action-gh-release@v2 with: