Skip to content

Commit ba84bf4

Browse files
authored
Merge pull request #1266 from minimum2scp/dependabot/github_actions/actions/upload-artifact-5
build(deps): bump actions/upload-artifact from 4 to 5
2 parents 1054703 + 980ed0e commit ba84bf4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
# save image as artifact
4747
- run: docker save minimum2scp/baseimage:latest | pigz -c - > /tmp/baseimage.tar.gz
48-
- uses: actions/upload-artifact@v4
48+
- uses: actions/upload-artifact@v5
4949
with: { name: baseimage, path: /tmp/baseimage.tar.gz }
5050

5151
# push image to docker hub
@@ -82,7 +82,7 @@ jobs:
8282

8383
# save image as artifact
8484
- run: docker save minimum2scp/ruby:latest | pigz -c - > /tmp/ruby.tar.gz
85-
- uses: actions/upload-artifact@v4
85+
- uses: actions/upload-artifact@v5
8686
with: { name: ruby, path: /tmp/ruby.tar.gz }
8787

8888
# push image to docker hub
@@ -408,7 +408,7 @@ jobs:
408408

409409
# save image as artifact
410410
- run: docker save minimum2scp/baseimage-trixie:latest | pigz -c - > /tmp/baseimage-trixie.tar.gz
411-
- uses: actions/upload-artifact@v4
411+
- uses: actions/upload-artifact@v5
412412
with: { name: baseimage-trixie, path: /tmp/baseimage-trixie.tar.gz }
413413

414414
# push image to docker hub
@@ -527,7 +527,7 @@ jobs:
527527

528528
# save image as artifact
529529
- run: docker save minimum2scp/baseimage-bookworm:latest | pigz -c - > /tmp/baseimage-bookworm.tar.gz
530-
- uses: actions/upload-artifact@v4
530+
- uses: actions/upload-artifact@v5
531531
with: { name: baseimage-bookworm, path: /tmp/baseimage-bookworm.tar.gz }
532532

533533
# push image to docker hub

.github/workflows/ci.yml.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ images = {
8585
<%- if image_conf[:save_artifact] -%>
8686
# save image as artifact
8787
- run: docker save minimum2scp/<%= image %>:latest | pigz -c - > /tmp/<%= image %>.tar.gz
88-
- uses: actions/upload-artifact@v4
88+
- uses: actions/upload-artifact@v5
8989
with: { name: <%= image %>, path: /tmp/<%= image %>.tar.gz }
9090
<%- else -%>
9191
# no need to save image as artifact

0 commit comments

Comments
 (0)