From ff04c3be50b12c6774dc433a3d2a60cdcabbb560 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 15:42:27 +0000 Subject: [PATCH] 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/age-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/age-ci.yml b/.github/workflows/age-ci.yml index 4765a3d..dc1abc2 100644 --- a/.github/workflows/age-ci.yml +++ b/.github/workflows/age-ci.yml @@ -35,7 +35,7 @@ jobs: run: build/age_ci.sh build-qt Release - name: upload Qt artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_PATH }} @@ -52,7 +52,7 @@ jobs: run: build/age_ci.sh build-gtest Debug - name: upload Google Test artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_PATH }} @@ -69,7 +69,7 @@ jobs: run: build/age_ci.sh build-test-runner Release - name: upload test runner artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_PATH }} @@ -88,7 +88,7 @@ jobs: run: build/age_ci.sh build-wasm Release - name: upload WebAssembly artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_PATH }}