Skip to content

Commit 6c58261

Browse files
committed
workflows: bump actions to latest versions
v3 actions are deprecated, should probably update before november :p
1 parent 0410f18 commit 6c58261

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/nightly.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Build with Docker using devkitARM
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
- name: Build initial zips
1919
run: |
2020
chmod +x build.sh
@@ -71,7 +71,7 @@ jobs:
7171
cp out/AOS_*.zip ~/artifacts
7272
7373
- name: Publish build to GH Actions
74-
uses: actions/upload-artifact@v3
74+
uses: actions/upload-artifact@v4
7575
with:
7676
path: ~/artifacts/*
7777
name: build

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Build with Docker using devkitARM
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Build initial zips
1616
run: |
1717
chmod +x build.sh
@@ -68,12 +68,12 @@ jobs:
6868
cp out/AOS_*.zip ~/artifacts
6969
7070
- name: Publish build to GH Actions
71-
uses: actions/upload-artifact@v3
71+
uses: actions/upload-artifact@v4
7272
with:
7373
path: ~/artifacts/*
7474
name: build
7575
- name: Release
76-
uses: softprops/action-gh-release@v1
76+
uses: softprops/action-gh-release@v2
7777
if: startsWith(github.ref, 'refs/tags/')
7878
with:
7979
files: |

0 commit comments

Comments
 (0)