From c8b17a109074be5a61deb2b017fdbc6784b51b02 Mon Sep 17 00:00:00 2001 From: "cluster-stack-bot[bot]" <143188378+cluster-stack-bot[bot]@users.noreply.github.com> Date: Fri, 21 Jun 2024 11:18:07 +0000 Subject: [PATCH] :seedling: Update image docker.io/library/alpine to v3.20.1 | datasource | package | from | to | | ---------- | ------------------------ | ------ | ------ | | docker | docker.io/library/alpine | 3.20.0 | 3.20.1 | --- .builder-image-version.txt | 2 +- .github/workflows/pr-lint.yml | 2 +- .github/workflows/schedule-scan-image.yml | 2 +- images/cache/Dockerfile | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.builder-image-version.txt b/.builder-image-version.txt index cbb8cbae4..852ed67cf 100644 --- a/.builder-image-version.txt +++ b/.builder-image-version.txt @@ -1 +1 @@ -1.1.17 +1.1.18 diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml index 14af1fe78..9720f76c4 100644 --- a/.github/workflows/pr-lint.yml +++ b/.github/workflows/pr-lint.yml @@ -21,7 +21,7 @@ jobs: if: github.event_name != 'pull_request' || !github.event.pull_request.draft runs-on: ubuntu-latest container: - image: ghcr.io/sovereigncloudstack/cso-builder:1.1.17 + image: ghcr.io/sovereigncloudstack/cso-builder:1.1.18 credentials: username: ${{ github.actor }} password: ${{ secrets.github_token }} diff --git a/.github/workflows/schedule-scan-image.yml b/.github/workflows/schedule-scan-image.yml index f4769ec8a..1cb4563af 100644 --- a/.github/workflows/schedule-scan-image.yml +++ b/.github/workflows/schedule-scan-image.yml @@ -9,7 +9,7 @@ jobs: name: Trivy runs-on: ubuntu-latest container: - image: ghcr.io/sovereigncloudstack/cso-builder:1.1.17 + image: ghcr.io/sovereigncloudstack/cso-builder:1.1.18 credentials: username: ${{ github.actor }} password: ${{ secrets.github_token }} diff --git a/images/cache/Dockerfile b/images/cache/Dockerfile index 43f82104b..177332db4 100644 --- a/images/cache/Dockerfile +++ b/images/cache/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. -FROM docker.io/library/alpine:3.20.0@sha256:77726ef6b57ddf65bb551896826ec38bc3e53f75cdde31354fbffb4f25238ebd as import-cache +FROM docker.io/library/alpine:3.20.1@sha256:b89d9c93e9ed3597455c90a0b88a8bbb5cb7188438f70953fede212a0c4394e0 as import-cache RUN --mount=type=bind,target=/host-tmp \ --mount=type=cache,target=/root/.cache \ @@ -27,7 +27,7 @@ RUN --mount=type=bind,target=/host-tmp \ tar xzf /host-tmp/go-pkg-cache.tar.gz --no-same-owner -C /go/pkg; \ fi -FROM docker.io/library/alpine:3.20.0@sha256:77726ef6b57ddf65bb551896826ec38bc3e53f75cdde31354fbffb4f25238ebd as cache-creator +FROM docker.io/library/alpine:3.20.1@sha256:b89d9c93e9ed3597455c90a0b88a8bbb5cb7188438f70953fede212a0c4394e0 as cache-creator RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=/go/pkg \ tar czf /tmp/go-build-cache.tar.gz -C /root/.cache/go-build . ; \