From fc8fb9f6f4cb560c5ff9a38ea007fe5390334cc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 13:43:12 +0000 Subject: [PATCH] Build: Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/autobuild.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index b4e9262db4..8472613a04 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -379,7 +379,7 @@ jobs: - name: Upload Artifact 1 to Job # Every build job has at least one artifact. Therefore, no `if` here. # If the artifact is missing, this should fail. - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ steps.get-artifacts.outputs.artifact_1 }} path: deploy/${{ steps.get-artifacts.outputs.artifact_1 }} @@ -388,7 +388,7 @@ jobs: - name: Upload Artifact 2 to Job if: steps.get-artifacts.outputs.artifact_2 - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ steps.get-artifacts.outputs.artifact_2 }} path: deploy/${{ steps.get-artifacts.outputs.artifact_2 }}