Skip to content

Commit

Permalink
Updated the GitHub Actions tasks due to GitHub warning
Browse files Browse the repository at this point in the history
It's pretty ridiculous, but whatever.
  • Loading branch information
mmatyas committed Apr 1, 2024
1 parent 10d684a commit c85cb0c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_emcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install Emscripten
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
sdl: [1, 2]
name: X11 SDL${{ matrix.sdl }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install dependencies
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Upload artifacts
if: matrix.sdl == 2
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: supermariowar_linux
path: supermariowar_*_linux.zip
4 changes: 2 additions & 2 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install dependencies
Expand All @@ -26,7 +26,7 @@ jobs:
zip -r "supermariowar_$(date +%F)_macos.zip" supermariowar
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: supermariowar_macos
path: supermariowar_*_macos.zip
4 changes: 2 additions & 2 deletions .github/workflows/build_mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install dependencies
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
zip -r "supermariowar_$(date +%F)_windows.zip" supermariowar
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: supermariowar_windows
path: supermariowar_*_windows.zip

0 comments on commit c85cb0c

Please sign in to comment.