Skip to content

Commit b3be416

Browse files
committed
Upgrade actions/upload-artifact and actions/download-artifact to v4
The workflow do not upload multiple artifacts under the same 'name', so it can be easily upgraded to v4 without the need to handle breaking changes.
1 parent a77bc56 commit b3be416

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

workflow-templates/publish-go-tester-task.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
132132
# Transfer builds to artifacts job
133133
- name: Upload build artifact
134-
uses: actions/upload-artifact@v3
134+
uses: actions/upload-artifact@v4
135135
with:
136136
path: ${{ env.DIST_DIR }}/${{ matrix.os.path }}
137137
name: ${{ matrix.os.name }}
@@ -146,7 +146,7 @@ jobs:
146146

147147
steps:
148148
- name: Download build artifacts
149-
uses: actions/download-artifact@v3
149+
uses: actions/download-artifact@v4
150150

151151
- name: Create checksum file
152152
run: |
@@ -161,7 +161,7 @@ jobs:
161161
done
162162
163163
- name: Upload checksum artifact
164-
uses: actions/upload-artifact@v3
164+
uses: actions/upload-artifact@v4
165165
with:
166166
path: ./*checksums.txt
167167
name: checksums

0 commit comments

Comments
 (0)