Skip to content

Commit

Permalink
Merge pull request #1041 from JohnStrunk/upload-download
Browse files Browse the repository at this point in the history
Update actions upload & download artifact to v4
  • Loading branch information
openshift-merge-bot[bot] authored Dec 19, 2023
2 parents 9f5cb6a + 8da02e5 commit e31853d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/operator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
run: docker save -o /tmp/image.tar ${OPERATOR_IMAGE}

- name: Save container as artifact
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: volsync-operator
path: /tmp/image.tar
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
run: docker save -o /tmp/image.tar ${CUSTOM_SCORECARD_IMAGE}

- name: Save container as artifact
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: volsync-custom-scorecard-tests-container
path: /tmp/image.tar
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
run: make test-krew

- name: Save cli as artifact
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: kubectl-volsync
path: bin/kubectl-volsync
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:
MINIO_NAMESPACE=minio-tls MINIO_USE_TLS=1 ./hack/run-minio.sh
- name: Load operator container artifact
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
with:
name: volsync-operator
path: /tmp
Expand All @@ -354,7 +354,7 @@ jobs:
volsync-ghaction ./helm/volsync
- name: Load cli artifact
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
with:
name: kubectl-volsync
path: bin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/registry-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Load container artifact
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
with:
name: ${{ inputs.artifact-name }}
path: /tmp
Expand Down

0 comments on commit e31853d

Please sign in to comment.