Skip to content

Commit cfcd979

Browse files
committed
Upgrade upload/download artifact actions
1 parent 17ed9ae commit cfcd979

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/chunk.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ jobs:
6565
working-directory: ./java
6666
- name: Upload site as artifact
6767
if: failure() && steps.site.conclusion == 'success'
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: site
71-
path: |
72-
/tmp/sleeper/site
71+
path: /tmp/sleeper/site

.github/workflows/docker-cli-image.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
with:
7373
driver-opts: network=host
7474
- name: Download artifacts from previous workflows
75-
uses: actions/download-artifact@v3
75+
uses: actions/download-artifact@v4
7676
- name: Load dependencies image
7777
run: docker load --input dependencies-image/dependencies-image.tar
7878
- name: Expose dependencies image to Docker Buildx via local registry

.github/workflows/docker-cli.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Save dependencies image to tarball
5353
run: docker save ${{ env.DEPENDENCIES_IMAGE }} --output /tmp/dependencies-image.tar
5454
- name: Upload dependencies image as artifact
55-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: dependencies-image
5858
path: /tmp/dependencies-image.tar

0 commit comments

Comments
 (0)