Skip to content

Commit 0141cdd

Browse files
committed
ci: update artifact actions
1 parent d40640f commit 0141cdd

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/early-access.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
./mvnw -ntp -B --file pom.xml -Pall,dist package
3838
3939
- name: 'Upload build artifact'
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: artifacts
4343
path: |
@@ -54,7 +54,9 @@ jobs:
5454
clean: true
5555

5656
- name: 'Download all artifacts'
57-
uses: actions/[email protected]
57+
uses: actions/download-artifact@v4
58+
with:
59+
path: artifacts
5860

5961
- name: 'Set up Java'
6062
uses: actions/setup-java@v3

.github/workflows/release.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
./mvnw -ntp -B --file pom.xml -Pall,dist package
154154
155155
- name: 'Upload build artifact'
156-
uses: actions/upload-artifact@v3
156+
uses: actions/upload-artifact@v4
157157
with:
158158
name: artifacts
159159
path: |
@@ -171,7 +171,9 @@ jobs:
171171
fetch-depth: 0
172172

173173
- name: 'Download all artifacts'
174-
uses: actions/[email protected]
174+
uses: actions/download-artifact@v4
175+
with:
176+
path: artifacts
175177

176178
- name: 'Set up Java'
177179
uses: actions/setup-java@v3

0 commit comments

Comments
 (0)