diff --git a/.github/workflows/build_emcc.yml b/.github/workflows/build_emcc.yml index 0cea1156..9b85f9f4 100644 --- a/.github/workflows/build_emcc.yml +++ b/.github/workflows/build_emcc.yml @@ -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 diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index af5babd7..b62c40d9 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -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 @@ -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 diff --git a/.github/workflows/build_macos.yml b/.github/workflows/build_macos.yml index 6aed606b..84b23e0e 100644 --- a/.github/workflows/build_macos.yml +++ b/.github/workflows/build_macos.yml @@ -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 @@ -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 diff --git a/.github/workflows/build_mingw.yml b/.github/workflows/build_mingw.yml index 4afbddad..cd21e8e3 100644 --- a/.github/workflows/build_mingw.yml +++ b/.github/workflows/build_mingw.yml @@ -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 @@ -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