From ce4129c6c9de1001be4094f7480675dd75cb557c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 02:24:35 +0000 Subject: [PATCH] build(deps): 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/android.yml | 6 +++--- .github/workflows/check_clang_format_and_codespell.yml | 2 +- .github/workflows/msvc-build-preset.yml | 2 +- .github/workflows/windows-matrix.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 44959d736..75f0a542f 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -43,14 +43,14 @@ jobs: run: ./maintainer-scripts/build-aar.sh - name: Upload bare AAR - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: AAR and POM path: openxr_loader_for_android* - name: Upload Maven repo if: inputs.release || inputs.snapshot - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: repo path: maintainer-scripts/publish-aar/build/repo/ @@ -78,7 +78,7 @@ jobs: - name: Upload HelloXR OpenGLES (debug) for Android if: ${{ !inputs.release }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: HelloXR OpenGLES Android path: src/tests/hello_xr/build/outputs/apk/OpenGLES/debug/*.apk diff --git a/.github/workflows/check_clang_format_and_codespell.yml b/.github/workflows/check_clang_format_and_codespell.yml index d807b6601..90bfa1d14 100644 --- a/.github/workflows/check_clang_format_and_codespell.yml +++ b/.github/workflows/check_clang_format_and_codespell.yml @@ -29,7 +29,7 @@ jobs: if: ${{ failure() }} - name: Publish diff if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: ${{ runner.temp }}/clang-format.patch name: clang-format-changes diff --git a/.github/workflows/msvc-build-preset.yml b/.github/workflows/msvc-build-preset.yml index 4ac2b5836..02e314461 100644 --- a/.github/workflows/msvc-build-preset.yml +++ b/.github/workflows/msvc-build-preset.yml @@ -57,7 +57,7 @@ jobs: run: "cmake --build $env:RUNNER_TEMP --parallel --config ${{ inputs.buildType }} --target install" - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: inputs.artifactName with: name: "${{ inputs.artifactName }}" diff --git a/.github/workflows/windows-matrix.yml b/.github/workflows/windows-matrix.yml index ada9f3dd7..01e7db584 100644 --- a/.github/workflows/windows-matrix.yml +++ b/.github/workflows/windows-matrix.yml @@ -58,7 +58,7 @@ jobs: run: 'python .github/scripts/organize_windows_artifacts.py "${{ github.workspace }}" "${{ github.workspace }}/openxr_loader"' - name: Upload combined artifact - uses: "actions/upload-artifact@v3" + uses: "actions/upload-artifact@v4" with: name: openxr_loader_windows path: "${{ github.workspace }}/openxr_loader" @@ -78,7 +78,7 @@ jobs: run: 'nuget pack "${{ github.workspace }}/openxr_loader_staging/OpenXR.Loader.nuspec" -OutputDirectory "${{ github.workspace }}/nuget"' - name: Upload NuGet artifact - uses: "actions/upload-artifact@v3" + uses: "actions/upload-artifact@v4" with: name: NuGet path: "${{ github.workspace }}/nuget"