From 150950142f875d64037ef1733d8fbe0ac62e24cd Mon Sep 17 00:00:00 2001 From: "cluster-stack-bot[bot]" <143188378+cluster-stack-bot[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 11:18:56 +0000 Subject: [PATCH] :seedling: Update image docker.io/library/alpine to v3.20.3 | datasource | package | from | to | | ---------- | ------------------------ | ------ | ------ | | docker | docker.io/library/alpine | 3.20.1 | 3.20.3 | --- .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 6f182425..c442f5e7 100644 --- a/.builder-image-version.txt +++ b/.builder-image-version.txt @@ -1 +1 @@ -1.1.21 +1.1.22 diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml index d5c5b726..09ec576c 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.21 + image: ghcr.io/sovereigncloudstack/cso-builder:1.1.22 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 dfe982c1..89345bfb 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.21 + image: ghcr.io/sovereigncloudstack/cso-builder:1.1.22 credentials: username: ${{ github.actor }} password: ${{ secrets.github_token }} diff --git a/images/cache/Dockerfile b/images/cache/Dockerfile index 177332db..b1b19f94 100644 --- a/images/cache/Dockerfile +++ b/images/cache/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. -FROM docker.io/library/alpine:3.20.1@sha256:b89d9c93e9ed3597455c90a0b88a8bbb5cb7188438f70953fede212a0c4394e0 as import-cache +FROM docker.io/library/alpine:3.20.3@sha256:1e42bbe2508154c9126d48c2b8a75420c3544343bf86fd041fb7527e017a4b4a 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.1@sha256:b89d9c93e9ed3597455c90a0b88a8bbb5cb7188438f70953fede212a0c4394e0 as cache-creator +FROM docker.io/library/alpine:3.20.3@sha256:1e42bbe2508154c9126d48c2b8a75420c3544343bf86fd041fb7527e017a4b4a 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 . ; \