Skip to content

Commit

Permalink
Updated actions across all workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaquewithaq committed Feb 2, 2024
1 parent 7cefc94 commit 0b75695
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_emscripten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: projectm-eval-emscripten-latest
path: install/*
4 changes: 2 additions & 2 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Packages
run: |
Expand All @@ -42,7 +42,7 @@ jobs:
cmake --build "${{ github.workspace }}/cmake-build" --config "Release" --target install
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: projectm-eval-linux-latest
path: install/*
4 changes: 2 additions & 2 deletions .github/workflows/build_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Packages
run: brew install ninja googletest
Expand All @@ -40,7 +40,7 @@ jobs:
cmake --build "${{ github.workspace }}/cmake-build" --config "Release" --target install
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: projectm-eval-osx-latest
path: install/*
8 changes: 4 additions & 4 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Dependencies
run: vcpkg --triplet=x64-windows install gtest
Expand All @@ -40,7 +40,7 @@ jobs:
cmake --build "${{ github.workspace }}/cmake-build" --config "Release" --target INSTALL
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: projectm-eval-windows-md-latest
path: install/*
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

0 comments on commit 0b75695

Please sign in to comment.