From 98fe283e2a19c28589ac58def3bf023c73065d16 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 01:33:03 +0000 Subject: [PATCH] github-actions: bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' 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-checks.yml | 2 +- .github/workflows/pr-env-deploy.yml | 4 ++-- .github/workflows/release.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml index 2a74d63fd..933cad02b 100644 --- a/.github/workflows/daily-build.yml +++ b/.github/workflows/daily-build.yml @@ -58,7 +58,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@v7 with: name: build-artifacts path: | diff --git a/.github/workflows/persistent-environment.yml b/.github/workflows/persistent-environment.yml index fcc47fcdd..570b38b30 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@v7 with: name: build-artifacts path: | diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index ad5b9e56e..d5c3bfead 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -35,7 +35,7 @@ jobs: run: make test - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: build-artifacts path: dist diff --git a/.github/workflows/pr-env-deploy.yml b/.github/workflows/pr-env-deploy.yml index 76e27080f..f966b1eec 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@v7 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@v7 with: name: performance-test-outputs path: dist/*.png diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fa7dc4d8b..da9f52967 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,7 +73,7 @@ jobs: run: bash scripts/sbom-create.sh - name: Upload SBOM artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: sbom-${{ github.sha }} path: sbom.spdx.json