Skip to content

Commit 0b75695

Browse files
committed
Updated actions across all workflows
1 parent 7cefc94 commit 0b75695

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build_emscripten.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: Setup emsdk
2323
uses: mymindstorm/setup-emsdk@v11
2424
with:
2525
# Make sure to set a version number!
26-
version: 3.1.27
26+
version: 3.1.53
2727
# This is the name of the cache folder.
2828
# The cache folder will be placed in the build directory,
2929
# so make sure it doesn't conflict with anything!
@@ -46,7 +46,7 @@ jobs:
4646
run: cmake --install "${{ github.workspace }}/cmake-build"
4747

4848
- name: Upload Artifact
49-
uses: actions/upload-artifact@v3
49+
uses: actions/upload-artifact@v4
5050
with:
5151
name: projectm-eval-emscripten-latest
5252
path: install/*

.github/workflows/build_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: Install Packages
2323
run: |
@@ -42,7 +42,7 @@ jobs:
4242
cmake --build "${{ github.workspace }}/cmake-build" --config "Release" --target install
4343
4444
- name: Upload Artifact
45-
uses: actions/upload-artifact@v3
45+
uses: actions/upload-artifact@v4
4646
with:
4747
name: projectm-eval-linux-latest
4848
path: install/*

.github/workflows/build_osx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: macos-latest
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: Install Packages
2323
run: brew install ninja googletest
@@ -40,7 +40,7 @@ jobs:
4040
cmake --build "${{ github.workspace }}/cmake-build" --config "Release" --target install
4141
4242
- name: Upload Artifact
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: projectm-eval-osx-latest
4646
path: install/*

.github/workflows/build_windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: windows-latest
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: Install Dependencies
2323
run: vcpkg --triplet=x64-windows install gtest
@@ -40,7 +40,7 @@ jobs:
4040
cmake --build "${{ github.workspace }}/cmake-build" --config "Release" --target INSTALL
4141
4242
- name: Upload Artifact
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: projectm-eval-windows-md-latest
4646
path: install/*
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: windows-latest
5151

5252
steps:
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454

5555
- name: Install Dependencies
5656
run: vcpkg --triplet=x64-windows-static install gtest
@@ -73,7 +73,7 @@ jobs:
7373
cmake --build "${{ github.workspace }}/cmake-build" --config "Release" --target INSTALL
7474
7575
- name: Upload Artifact
76-
uses: actions/upload-artifact@v3
76+
uses: actions/upload-artifact@v4
7777
with:
7878
name: projectm-eval-windows-mt-latest
7979
path: install/*

0 commit comments

Comments
 (0)