Skip to content

Commit

Permalink
[CI] Update to last actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarod42 committed Feb 1, 2024
1 parent 9878d91 commit 4fc5911
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

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

- name: install SDL2
run: brew install sdl2 sdl2_mixer sdl2_net
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/premake5-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:

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

- name: checkout premake5
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: premake/premake-core
path: premake-build

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1.3
uses: microsoft/setup-msbuild@v2

- name: Build premake5
run: |
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
./maxr_tests.exe
- name: upload maxr
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: maxr
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:

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

- name: checkout premake5
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: premake/premake-core
path: premake-build

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1.3
uses: microsoft/setup-msbuild@v2

- name: Build premake5
run: |
Expand Down Expand Up @@ -52,12 +52,12 @@ jobs:
run: cp solution/vs2022/resinstaller/bin/Release/resinstaller.exe data/

- name: Create nsis installer
uses: joncloud/makensis-action@publish
uses: joncloud/makensis-action@v4
with:
script-file: mk/win32/installer/maxr-installer.nsi

- name: Upload maxr
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: maxr-installer.exe
path: mk/win32/installer/maxr-*.exe
2 changes: 1 addition & 1 deletion .github/workflows/resinstaller-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

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

- name: install dependencies SDL2 ogg vorbis
run: brew install sdl2 libogg libvorbis
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/resinstaller-premake5-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:

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

- name: install dependencies SDL2 ogg vorbis
run: brew install sdl2 libogg libvorbis

- name: checkout premake5
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: premake/premake-core
path: premake-build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/resinstaller-premake5-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

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

- name: apt-get update
run: sudo apt-get update
Expand All @@ -30,7 +30,7 @@ jobs:
sudo apt-get install libsdl2-dev libogg-dev libvorbis-dev libvorbisenc2 libvorbisidec-dev
- name: checkout premake5
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: premake/premake-core
path: premake-build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/resinstaller-premake5-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:

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

- name: checkout premake5
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: premake/premake-core
path: premake-build

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.1.3
uses: microsoft/setup-msbuild@v2

- name: Build premake5
run: |
Expand All @@ -47,7 +47,7 @@ jobs:
msbuild.exe /property:Configuration=Release Resinstaller.sln
- name: upload resinstaller.exe
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: resinstaller
path: solution/vs2022/resinstaller/bin/Release
2 changes: 1 addition & 1 deletion .github/workflows/resinstaller-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

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

- name: apt-get update
run: sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

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

- name: apt-get update
run: sudo apt-get update
Expand Down

0 comments on commit 4fc5911

Please sign in to comment.