Skip to content

Commit 90d4fcc

Browse files
committed
fix: Fix deprecated CI
1 parent beaaf39 commit 90d4fcc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/jnigen.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
zip natives-linux -@ < native-files-list
5252
5353
- name: Upload artifacts
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: natives-linux.zip
5757
path: natives-linux.zip
@@ -93,7 +93,7 @@ jobs:
9393
zip natives-mac -@ < native-files-list
9494
9595
- name: Upload artifacts
96-
uses: actions/upload-artifact@v3
96+
uses: actions/upload-artifact@v4
9797
with:
9898
name: natives-mac.zip
9999
path: natives-mac.zip
@@ -119,15 +119,15 @@ jobs:
119119

120120
- name: Download Artifacts from linux
121121
if: success() && needs.build-linux.result == 'success'
122-
uses: actions/download-artifact@v3
122+
uses: actions/download-artifact@v4
123123
with:
124124
name: natives-linux.zip
125125

126126
- name: Unzip artifacts
127127
run: unzip -o natives-linux.zip
128128
- name: Download Artifacts from mac
129129
if: success() && needs.build-mac.result == 'success'
130-
uses: actions/download-artifact@v3
130+
uses: actions/download-artifact@v4
131131
with:
132132
name: natives-mac.zip
133133

0 commit comments

Comments
 (0)