Skip to content

Commit 529c626

Browse files
committed
upgrade deprecated upload-artifact in Github actions
1 parent e5a625c commit 529c626

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: upload binaries
4141
# only run if this was a tagged release (only works if separate job)
4242
# if: ( github.event_name == "create" ) && ( github.event.ref_type == 'tag' )
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: ${{ env.release_name }}
4646
path: ./build/${{ env.release_name }}.zip

.github/workflows/build-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: upload binaries
2828
# only run if this was a tagged release (only works if separate job)
2929
# if: ( github.event_name == "create" ) && ( github.event.ref_type == 'tag' )
30-
uses: actions/upload-artifact@v3
30+
uses: actions/upload-artifact@v4
3131
with:
3232
name: ${{ env.release_name }}
3333
path: ./build/${{ env.release_name }}.zip

.github/workflows/build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: upload binaries
4545
# only run if this was a tagged release (only works if separate job)
4646
# if: ( github.event_name == "create" ) && ( github.event.ref_type == 'tag' )
47-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v4
4848
with:
4949
name: ${{ env.release_name }}
5050
path: ./build/${{ env.release_name }}.zip

0 commit comments

Comments
 (0)