ref: ac0b5b30ee97d9184603627cb50cbc4fb4ec23f1
parent: 9ad77e42f45c23eb0ce722df7c5cd45b882a57d5
author: allkern <lisandroaalarcon@gmail.com>
date: Sat May 11 07:24:04 EDT 2024
Bump deprecated actions v3 to v4
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -9,7 +9,7 @@
runs-on: macos-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install SDL2 and dylibbundler
@@ -21,7 +21,7 @@
git fetch --all --tags
./build.sh
tar -czf psxe-macos-latest.tar.gz psxe.app
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
with:
name: psxe-macos-latest
path: ./psxe-macos-latest.tar.gz
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -9,7 +9,7 @@
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install SDL2
@@ -25,7 +25,7 @@
chmod +x ./bin/psxe
mv ./bin/psxe ./
tar -czf psxe-ubuntu-latest.tar.gz ./psxe
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
with:
name: psxe-ubuntu-latest
path: ./psxe-ubuntu-latest.tar.gz
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -9,7 +9,7 @@
runs-on: windows-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run build-deps
@@ -19,7 +19,7 @@
./build-win64.ps1
New-Item -Path "psxe" -ItemType Directory
Copy-Item -Recurse "bin" -Destination "psxe"
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
with:
name: psxe-win64-latest
path: psxe/
@@ -31,7 +31,7 @@
./build-win32.ps1
New-Item -Path "psxe" -ItemType Directory
Copy-Item -Recurse "bin" -Destination "psxe"
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
with:
name: psxe-win32-latest
path: psxe/
\ No newline at end of file
--
⑨