Skip to content

Commit 6180a55

Browse files
committed
Bump upload-artifact action version to v4
1 parent 737a7d5 commit 6180a55

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build_windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
cmake --build . -j 2 --verbose
5858
- name: Save executables as artifacts
5959
#if: startsWith(github.ref, 'refs/tags/v')
60-
uses: actions/upload-artifact@v3
60+
uses: actions/upload-artifact@v4
6161
with:
6262
name: ore-windows-${{ matrix.arch }}
6363
path: D:\a\Engine\Engine\build\App\ore.exe

.github/workflows/linux_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: cd build/; pwd; cmake --build . -j $(nproc)
4141
- name: Save executables as artifacts
4242
if: startsWith(github.ref, 'refs/tags/v')
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: ore-exe-linux
4646
path: /home/runner/work/Engine/Engine/build/App/ore

.github/workflows/macos_ARM64_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
cmake --install .
4646
- name: Save executables as artifacts
4747
if: startsWith(github.ref, 'refs/tags/v')
48-
uses: actions/upload-artifact@v3
48+
uses: actions/upload-artifact@v4
4949
with:
5050
name: ore-macos-arm64
5151
path: /Users/runner/work/Engine/Engine/build/App/ore

0 commit comments

Comments
 (0)