From 640a77b35fdc677a9ae71feb974d895aef8fddfe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 21:05:51 +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 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) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/download-artifact dependency-version: '7' 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 09a025e..09f12fa 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@v5 + - uses: actions/upload-artifact@v6 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@v5 + - uses: actions/upload-artifact@v6 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@v6 + uses: actions/download-artifact@v7 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@v6 + uses: actions/download-artifact@v7 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@v6 + uses: actions/download-artifact@v7 - name: Release uses: softprops/action-gh-release@v2 with: