From 221dc71ea68c1a5091f7a4ddae818a125e30ad40 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Jan 2026 15:06:49 +0000 Subject: [PATCH 1/2] build(deps): bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0cc6c48c8..0033b8d4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: # save image as artifact - run: docker save minimum2scp/baseimage:latest | pigz -c - > /tmp/baseimage.tar.gz - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: { name: baseimage, path: /tmp/baseimage.tar.gz } # push image to docker hub @@ -82,7 +82,7 @@ jobs: # save image as artifact - run: docker save minimum2scp/ruby:latest | pigz -c - > /tmp/ruby.tar.gz - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: { name: ruby, path: /tmp/ruby.tar.gz } # push image to docker hub @@ -408,7 +408,7 @@ jobs: # save image as artifact - run: docker save minimum2scp/baseimage-trixie:latest | pigz -c - > /tmp/baseimage-trixie.tar.gz - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: { name: baseimage-trixie, path: /tmp/baseimage-trixie.tar.gz } # push image to docker hub @@ -527,7 +527,7 @@ jobs: # save image as artifact - run: docker save minimum2scp/baseimage-bookworm:latest | pigz -c - > /tmp/baseimage-bookworm.tar.gz - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: { name: baseimage-bookworm, path: /tmp/baseimage-bookworm.tar.gz } # push image to docker hub From e7591035f428ab640b5ef4d9969d1d074bdf7c88 Mon Sep 17 00:00:00 2001 From: YAMADA Tsuyoshi Date: Thu, 8 Jan 2026 00:12:21 +0900 Subject: [PATCH 2/2] bump actions/upload-artifact from 5 to 6 in erb template --- .github/workflows/ci.yml.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml.erb b/.github/workflows/ci.yml.erb index d2164eee1..60c2f292f 100644 --- a/.github/workflows/ci.yml.erb +++ b/.github/workflows/ci.yml.erb @@ -85,7 +85,7 @@ images = { <%- if image_conf[:save_artifact] -%> # save image as artifact - run: docker save minimum2scp/<%= image %>:latest | pigz -c - > /tmp/<%= image %>.tar.gz - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: { name: <%= image %>, path: /tmp/<%= image %>.tar.gz } <%- else -%> # no need to save image as artifact