From 2c6df6716e29148b4d73da8ce22c2e8f95b7fdd8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 19:02:33 +0000 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Bump=20actions/upload-arti?= =?UTF-8?q?fact=20from=203=20to=204=20(#4872)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
Release notes

Sourced from actions/upload-artifact's releases.

v4.0.0

What's Changed

The release of upload-artifact@v4 and download-artifact@v4 are major changes to the backend architecture of Artifacts. They have numerous performance and behavioral improvements.

For more information, see the @​actions/artifact documentation.

New Contributors

Full Changelog: https://github.com/actions/upload-artifact/compare/v3...v4.0.0

v3.1.3

What's Changed

Full Changelog: https://github.com/actions/upload-artifact/compare/v3...v3.1.3

v3.1.2

v3.1.1

v3.1.0

What's Changed

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/upload-artifact&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
--- .github/workflows/ci.yml | 8 ++++---- .github/workflows/load_test.yml | 2 +- .github/workflows/longevity_test.yml | 2 +- .github/workflows/nightly_test.yml | 2 +- .github/workflows/sanity-test.yaml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9d9247d6..c83252be2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -189,7 +189,7 @@ jobs: # Upload the original go test output as an artifact for later review. - name: Upload test log if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ci-test-log path: src/testlog/* @@ -260,7 +260,7 @@ jobs: # Upload the original go test output as an artifact for later review. - name: Upload test log if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ci-retention-test-log path: src/testlog/* @@ -315,7 +315,7 @@ jobs: # Upload the original go test output as an artifact for later review. - name: Upload test log if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: unit-test-log path: src/testlog/* @@ -404,7 +404,7 @@ jobs: # Upload the original go test log as an artifact for later review. - name: Upload test log if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: fork-test-log path: src/testlog/* diff --git a/.github/workflows/load_test.yml b/.github/workflows/load_test.yml index 45ac8d7e2..2bae725e9 100644 --- a/.github/workflows/load_test.yml +++ b/.github/workflows/load_test.yml @@ -107,7 +107,7 @@ jobs: # package all artifacts for later review - name: Upload Log, Profilers, Traces if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: load-test-profiling path: ${{ github.workspace }}/testlog/* diff --git a/.github/workflows/longevity_test.yml b/.github/workflows/longevity_test.yml index 15fb539b8..f6b97a49a 100644 --- a/.github/workflows/longevity_test.yml +++ b/.github/workflows/longevity_test.yml @@ -382,7 +382,7 @@ jobs: # Upload the original go test output as an artifact for later review. - name: Upload test log if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: longevity-test-log path: src/testlog/* diff --git a/.github/workflows/nightly_test.yml b/.github/workflows/nightly_test.yml index 42022ff0d..4e65b52a5 100644 --- a/.github/workflows/nightly_test.yml +++ b/.github/workflows/nightly_test.yml @@ -107,7 +107,7 @@ jobs: # Upload the original go test output as an artifact for later review. - name: Upload test log if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nightly-test-log path: src/testlog/* diff --git a/.github/workflows/sanity-test.yaml b/.github/workflows/sanity-test.yaml index ba33a63e0..70b0b7a1b 100644 --- a/.github/workflows/sanity-test.yaml +++ b/.github/workflows/sanity-test.yaml @@ -428,7 +428,7 @@ jobs: # Upload the original go test output as an artifact for later review. - name: Upload test log if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: sanity-test-log path: ${{ env.CORSO_LOG_DIR }}/*