File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
actions/upload-gatk-test-results Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 34
34
steps :
35
35
- name : Upload test results
36
36
if : always()
37
- uses : actions/upload-artifact@v3
37
+ uses : actions/upload-artifact@v4
38
38
with :
39
39
# ternary expression syntax is workaround found here https://github.com/actions/runner/issues/409
40
40
name : test-results-${{ inputs.is-docker == 'true' && 'docker-' || '' }}${{ matrix.Java }}-${{ matrix.testType }}
Original file line number Diff line number Diff line change 64
64
outputs : type=docker,dest=/tmp/myimage.tar
65
65
# By uploading the docker image as an artifact we save ourselves the requirement for the image to be built with ghcr push permission
66
66
- name : Upload docker image as artifact
67
- uses : actions/upload-artifact@v3
67
+ uses : actions/upload-artifact@v4
68
68
with :
69
69
name : gatkDockerImage
70
70
path : /tmp/myimage.tar
@@ -204,7 +204,7 @@ jobs:
204
204
cp scripts/docker/dockertest.gradle .
205
205
206
206
- name : Download docker image artifact
207
- uses : actions/download-artifact@v3
207
+ uses : actions/download-artifact@v4
208
208
with :
209
209
name : gatkDockerImage
210
210
path : /tmp
You can’t perform that action at this time.
0 commit comments