Skip to content

Commit

Permalink
Update versions of deprecated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkwouter committed Aug 18, 2024
1 parent 2b55dbc commit 588ab93
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y wget cmake libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev libjsoncpp-dev libfuse2
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: |
mkdir oceanpop && cd oceanpop
Expand All @@ -25,7 +25,7 @@ jobs:
./linuxdeploy-x86_64.AppImage --appdir AppDir --output appimage
cp ../LICENSE.txt ../README.md ./
- name: Publish artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: oceanpop-linux
path: |
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
mingw-w64-x86_64-jsoncpp
update: true
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: |
mkdir oceanpop && cd oceanpop
Expand All @@ -65,7 +65,7 @@ jobs:
strip --strip-unneeded oceanpop.exe
cp ../LICENSE.txt ../README.md ./
- name: Publish artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: oceanpop-windows
path: |
Expand All @@ -79,15 +79,15 @@ jobs:
container: pspdev/pspdev:latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: |
mkdir oceanpop && cd oceanpop
psp-cmake -DCMAKE_BUILD_TYPE=Release -DTRANSLATION_SUPPORT=1 ..
cmake --build .
cp ../LICENSE.txt ../README.md ./
- name: Publish artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: oceanpop-psp
path: |
Expand All @@ -101,15 +101,15 @@ jobs:
container: vitasdk/vitasdk:latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: |
mkdir oceanpop && cd oceanpop
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE="${VITASDK}/share/vita.toolchain.cmake" ..
cmake --build .
cp ../LICENSE.txt ../README.md ./
- name: Publish artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: oceanpop-vita
path: |
Expand All @@ -122,7 +122,7 @@ jobs:
container: devkitpro/devkitppc:latest
steps:
- name: Checkout json-cpp
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: open-source-parsers/jsoncpp
path: jsoncpp
Expand All @@ -136,7 +136,7 @@ jobs:
make
sudo make install
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: |
mkdir oceanpop && cd oceanpop
Expand All @@ -146,7 +146,7 @@ jobs:
run: |
./platform/wii/make_release.sh oceanpop ${{ github.ref_name }}
- name: Publish artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: oceanpop-wii
path: |
Expand Down

0 comments on commit 588ab93

Please sign in to comment.