Skip to content

Commit

Permalink
Upgrade upload/download artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
patchwork01 committed Nov 18, 2024
1 parent 17ed9ae commit cfcd979
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/chunk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ jobs:
working-directory: ./java
- name: Upload site as artifact
if: failure() && steps.site.conclusion == 'success'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: site
path: |
/tmp/sleeper/site
path: /tmp/sleeper/site
2 changes: 1 addition & 1 deletion .github/workflows/docker-cli-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
with:
driver-opts: network=host
- name: Download artifacts from previous workflows
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
- name: Load dependencies image
run: docker load --input dependencies-image/dependencies-image.tar
- name: Expose dependencies image to Docker Buildx via local registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Save dependencies image to tarball
run: docker save ${{ env.DEPENDENCIES_IMAGE }} --output /tmp/dependencies-image.tar
- name: Upload dependencies image as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dependencies-image
path: /tmp/dependencies-image.tar
Expand Down

0 comments on commit cfcd979

Please sign in to comment.