Skip to content

Commit ee25c7b

Browse files
authored
Updating upload_artifact in github actions (#9061)
Update upload_artifact from 3 -> 4
1 parent fc248df commit ee25c7b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/upload-gatk-test-results/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434
steps:
3535
- name: Upload test results
3636
if: always()
37-
uses: actions/upload-artifact@v3
37+
uses: actions/upload-artifact@v4
3838
with:
3939
# ternary expression syntax is workaround found here https://github.com/actions/runner/issues/409
4040
name: test-results-${{ inputs.is-docker == 'true' && 'docker-' || '' }}${{ matrix.Java }}-${{ matrix.testType }}

.github/workflows/gatk-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
outputs: type=docker,dest=/tmp/myimage.tar
6565
# By uploading the docker image as an artifact we save ourselves the requirement for the image to be built with ghcr push permission
6666
- name: Upload docker image as artifact
67-
uses: actions/upload-artifact@v3
67+
uses: actions/upload-artifact@v4
6868
with:
6969
name: gatkDockerImage
7070
path: /tmp/myimage.tar
@@ -204,7 +204,7 @@ jobs:
204204
cp scripts/docker/dockertest.gradle .
205205
206206
- name: Download docker image artifact
207-
uses: actions/download-artifact@v3
207+
uses: actions/download-artifact@v4
208208
with:
209209
name: gatkDockerImage
210210
path: /tmp

0 commit comments

Comments
 (0)