Skip to content

Commit 40e6cb8

Browse files
build(deps): bump actions/upload-artifact from 4 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b9d3cc6 commit 40e6cb8

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: "./maintainer-scripts/build-aar.sh"
3737

3838
- name: Upload bare AAR
39-
uses: "actions/upload-artifact@v4"
39+
uses: "actions/upload-artifact@v6"
4040
with:
4141
name: AAR and POM
4242
path: openxr_loader_for_android*
@@ -62,7 +62,7 @@ jobs:
6262

6363
- name: Upload HelloXR OpenGLES (debug) for Android
6464
if: "!inputs.release"
65-
uses: "actions/upload-artifact@v4"
65+
uses: "actions/upload-artifact@v6"
6666
with:
6767
name: HelloXR OpenGLES Android
6868
path: "src/tests/hello_xr/build/outputs/apk/OpenGLES/debug/*.apk"

.github/workflows/check_clang_format_and_codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
if: ${{ failure() }}
2929
- name: Publish diff
3030
if: ${{ failure() }}
31-
uses: actions/upload-artifact@v5
31+
uses: actions/upload-artifact@v6
3232
with:
3333
path: ${{ runner.temp }}/clang-format.patch
3434
name: clang-format-changes

.github/workflows/macos-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
tar -czvf openxr_loader_macos.tar.gz *
5050
5151
- name: Upload Artifact
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v6
5353
with:
5454
name: openxr_loader_macos
5555
path: install/openxr_loader_macos.tar.gz

.github/workflows/msvc-build-preset.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: "cmake --build $env:RUNNER_TEMP --parallel --config ${{ inputs.buildType }} --target install"
6060

6161
- name: Upload Artifacts
62-
uses: actions/upload-artifact@v5
62+
uses: actions/upload-artifact@v6
6363
if: inputs.artifactName
6464
with:
6565
name: "${{ inputs.artifactName }}"

.github/workflows/windows-matrix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: 'python .github/scripts/organize_windows_artifacts.py "${{ github.workspace }}" "${{ github.workspace }}/openxr_loader"'
5959

6060
- name: Upload combined artifact
61-
uses: "actions/upload-artifact@v4"
61+
uses: "actions/upload-artifact@v6"
6262
with:
6363
name: openxr_loader_windows
6464
path: "${{ github.workspace }}/openxr_loader"
@@ -78,7 +78,7 @@ jobs:
7878
run: 'nuget pack "${{ github.workspace }}/openxr_loader_staging/OpenXR.Loader.nuspec" -OutputDirectory "${{ github.workspace }}/nuget"'
7979

8080
- name: Upload NuGet artifact
81-
uses: "actions/upload-artifact@v4"
81+
uses: "actions/upload-artifact@v6"
8282
with:
8383
name: NuGet
8484
path: "${{ github.workspace }}/nuget"

0 commit comments

Comments
 (0)