From cdf479f7da9349bba26e530d4bb5d0873f4b7ce4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:24:25 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 4.4.3 to 4.5.0 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.3 to 4.5.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882...6f51ac03b9356f520e9adb1b1b7802705f340c2b) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/flow-hugo-publish.yaml | 2 +- .github/workflows/zxc-code-analysis.yaml | 2 +- .github/workflows/zxc-e2e-test.yaml | 6 +++--- .github/workflows/zxc-unit-test.yaml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/flow-hugo-publish.yaml b/.github/workflows/flow-hugo-publish.yaml index 08922a5db..a9f162ae4 100644 --- a/.github/workflows/flow-hugo-publish.yaml +++ b/.github/workflows/flow-hugo-publish.yaml @@ -108,7 +108,7 @@ jobs: # Upload the built site to artifacts for troubleshooting or verification - name: Upload Artifact - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 if: ${{ !endsWith(github.ref, 'main') }} with: path: ./docs/public diff --git a/.github/workflows/zxc-code-analysis.yaml b/.github/workflows/zxc-code-analysis.yaml index b3a68ff0b..c49f1a8a9 100644 --- a/.github/workflows/zxc-code-analysis.yaml +++ b/.github/workflows/zxc-code-analysis.yaml @@ -458,7 +458,7 @@ jobs: echo "::endgroup::" - name: Publish Snyk Reports - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 if: ${{ inputs.enable-snyk-scan && !cancelled() && !failure() }} with: name: Snyk Reports diff --git a/.github/workflows/zxc-e2e-test.yaml b/.github/workflows/zxc-e2e-test.yaml index 8aa6f0401..6852a9dc7 100644 --- a/.github/workflows/zxc-e2e-test.yaml +++ b/.github/workflows/zxc-e2e-test.yaml @@ -184,7 +184,7 @@ jobs: - name: Upload E2E Logs to GitHub if: ${{ !cancelled() }} - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: solo-${{ inputs.npm-test-script }}.log path: ~/.solo/logs/* @@ -192,7 +192,7 @@ jobs: if-no-files-found: error - name: Upload E2E Test Report - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 if: ${{ steps.npm-deps.conclusion == 'success' && !cancelled() }} with: name: e2e_test_report_${{ inputs.npm-test-script }} @@ -201,7 +201,7 @@ jobs: if-no-files-found: error - name: Publish E2E Coverage Report - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 if: ${{ !cancelled() }} with: name: ${{ inputs.coverage-report-name }} diff --git a/.github/workflows/zxc-unit-test.yaml b/.github/workflows/zxc-unit-test.yaml index 7287d0173..9022cd3c6 100644 --- a/.github/workflows/zxc-unit-test.yaml +++ b/.github/workflows/zxc-unit-test.yaml @@ -93,14 +93,14 @@ jobs: files: "junit.xml" - name: Publish Unit Test Coverage Report - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 if: ${{ runner.os == 'linux' && !cancelled() }} with: name: Unit Test Coverage Report path: 'coverage/unit' - name: Publish Test Reports - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 if: ${{ runner.os == 'linux' && steps.npm-deps.conclusion == 'success' && !cancelled() }} with: name: Test Reports