From 94e6b2acd595633546c735202281acbc78909f05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 06:21:27 +0000 Subject: [PATCH] build(deps): bump actions/download-artifact from 7 to 8 Bumps [actions/download-artifact](https://github.com/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/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/coverage-report.yml | 2 +- .github/workflows/publish-gh-pages.yml | 2 +- .github/workflows/publish-release.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coverage-report.yml b/.github/workflows/coverage-report.yml index a7295ce87..2da8b081e 100644 --- a/.github/workflows/coverage-report.yml +++ b/.github/workflows/coverage-report.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v6 - name: Download coverage artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: coverage path: coverage/ diff --git a/.github/workflows/publish-gh-pages.yml b/.github/workflows/publish-gh-pages.yml index f3ae34c1a..41b6cbf30 100644 --- a/.github/workflows/publish-gh-pages.yml +++ b/.github/workflows/publish-gh-pages.yml @@ -28,7 +28,7 @@ jobs: contents: write steps: - name: Download artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: ${{ inputs.artifact_name }} path: ${{ inputs.publish_dir }} diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 0f1fbf28c..5951cc820 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -43,7 +43,7 @@ jobs: is-high-risk-environment: true ref: ${{ github.sha }} - name: Restore build artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: publish-release-artifacts-${{ github.sha }} - name: Dry run publish to NPM @@ -64,7 +64,7 @@ jobs: is-high-risk-environment: true ref: ${{ github.sha }} - name: Restore build artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: publish-release-artifacts-${{ github.sha }} - name: Publish to NPM