Skip to content

Commit

Permalink
ci: update upload-download artifact actions
Browse files Browse the repository at this point in the history
The v4 of these actions provide 90% speed-ups by compressing artifacts.
Migration to this new action means zero cost.

Additional core clean-up performed.

Signed-off-by: Ernesto Puerta <[email protected]>
  • Loading branch information
epuertat committed Jan 23, 2024
1 parent 15f8031 commit 600daf9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
docker save bdevperf > bdevperf.tar
- name: Upload container images
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ceph_nvmeof_container_images-${{ github.run_number }}
path: |
Expand All @@ -80,7 +80,7 @@ jobs:
make setup HUGEPAGES=$HUGEPAGES
- name: Download container images
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ceph_nvmeof_container_images-${{ github.run_number }}

Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
run: make setup HUGEPAGES=$HUGEPAGES

- name: Download container images
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ceph_nvmeof_container_images-${{ github.run_number }}

Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
run: make setup HUGEPAGES=$HUGEPAGES

- name: Download container images
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ceph_nvmeof_container_images-${{ github.run_number }}

Expand Down Expand Up @@ -496,7 +496,7 @@ jobs:
uses: actions/checkout@v3

- name: Download container images
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ceph_nvmeof_container_images-${{ github.run_number }}

Expand Down

0 comments on commit 600daf9

Please sign in to comment.