From 22c481aec8ecec926c6993390932416821e8b8d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 01:06:04 +0000 Subject: [PATCH] github-actions: bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/daily-build.yml | 2 +- .github/workflows/persistent-environment.yml | 2 +- .github/workflows/pr-env-deploy.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml index f7c84d787..f9655c65c 100644 --- a/.github/workflows/daily-build.yml +++ b/.github/workflows/daily-build.yml @@ -55,7 +55,7 @@ jobs: make get-s3-perms ENV=${account} TF_WORKSPACE_NAME=${inactive_stack} - name: Save Build Artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: build-artifacts path: | diff --git a/.github/workflows/persistent-environment.yml b/.github/workflows/persistent-environment.yml index 3559e39dd..2561938ad 100644 --- a/.github/workflows/persistent-environment.yml +++ b/.github/workflows/persistent-environment.yml @@ -60,7 +60,7 @@ jobs: make get-s3-perms ENV=${account} TF_WORKSPACE_NAME=${inactive_stack} - name: Save Build Artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: build-artifacts path: | diff --git a/.github/workflows/pr-env-deploy.yml b/.github/workflows/pr-env-deploy.yml index 7a0f13128..297eb837e 100644 --- a/.github/workflows/pr-env-deploy.yml +++ b/.github/workflows/pr-env-deploy.yml @@ -80,7 +80,7 @@ jobs: make get-s3-perms ENV=dev - name: Save Build Artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: build-artifacts path: | @@ -309,7 +309,7 @@ jobs: run: make test-performance-output - name: Store Performance Test Outputs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: performance-test-outputs path: dist/*.png