Skip to content

Commit c7e2d7e

Browse files
Alystraszpg9182
authored andcommitted
build: use actions/[download,upload]-artifact@v4 in release CI configuration
1 parent 72acef9 commit c7e2d7e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
- name: Build
3333
run: cmake --build build/
3434
- name: Upload launcher build as artifact
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: northstar-launcher
3838
path: |
3939
build/game/*.exe
4040
build/game/*.dll
4141
build/game/bin/x64_retail/*.dll
4242
- name: Upload debug build artifact
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: launcher-debug-files
4646
path: |
@@ -53,12 +53,12 @@ jobs:
5353
runs-on: ubuntu-22.04
5454
steps:
5555
- name: Download compiled launcher
56-
uses: actions/download-artifact@v3
56+
uses: actions/download-artifact@v4
5757
with:
5858
name: northstar-launcher
5959
path: northstar-launcher
6060
- name: Download compiled launcher
61-
uses: actions/download-artifact@v3
61+
uses: actions/download-artifact@v4
6262
with:
6363
name: launcher-debug-files
6464
path: launcher-debug-files

0 commit comments

Comments
 (0)