Skip to content

Commit 2405a8f

Browse files
committed
GitHub Actions: Update {upload,download}-artifact to v4
1 parent b7b09ff commit 2405a8f

File tree

4 files changed

+7
-7
lines changed

4 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@v3"
39+
uses: "actions/upload-artifact@v4"
4040
with:
4141
name: AAR and POM
4242
path: openxr_loader_for_android*
@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: Upload HelloXR OpenGLES (debug) for Android
6363
if: "!inputs.release"
64-
uses: "actions/upload-artifact@v3"
64+
uses: "actions/upload-artifact@v4"
6565
with:
6666
name: HelloXR OpenGLES Android
6767
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@v3
31+
uses: actions/upload-artifact@v4
3232
with:
3333
path: ${{ runner.temp }}/clang-format.patch
3434
name: clang-format-changes

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

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

5959
- name: Upload Artifacts
60-
uses: actions/upload-artifact@v3
60+
uses: actions/upload-artifact@v4
6161
if: inputs.artifactName
6262
with:
6363
name: "${{ inputs.artifactName }}"

.github/workflows/windows-matrix.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ jobs:
5050
- uses: "actions/checkout@v4"
5151

5252
- name: Retrieve artifacts
53-
uses: "actions/download-artifact@v3"
53+
uses: "actions/download-artifact@v4"
5454
with:
5555
path: artifacts
5656

5757
- name: Organize artifacts
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@v3"
61+
uses: "actions/upload-artifact@v4"
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@v3"
81+
uses: "actions/upload-artifact@v4"
8282
with:
8383
name: NuGet
8484
path: "${{ github.workspace }}/nuget"

0 commit comments

Comments
 (0)