From d558bd23f7e64d736d28d70c3f16177b7a037647 Mon Sep 17 00:00:00 2001 From: "cluster-stack-bot[bot]" <143188378+cluster-stack-bot[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 11:13:33 +0000 Subject: [PATCH] :seedling: Update Builder Image group | datasource | package | from | to | | ----------- | -------------------------------- | ------- | ------- | | github-tags | aquasecurity/trivy | v0.57.1 | v0.58.1 | | docker | docker.io/library/golang | 1.23.3 | 1.23.4 | | github-tags | golangci/golangci-lint | v1.62.2 | v1.63.4 | | github-tags | kubernetes-sigs/cluster-api | v1.8.5 | v1.9.3 | | github-tags | kubernetes-sigs/controller-tools | v0.16.5 | v0.17.0 | | github-tags | kubernetes-sigs/kind | v0.25.0 | v0.26.0 | --- .builder-image-version.txt | 2 +- .github/workflows/pr-lint.yaml | 2 +- .github/workflows/schedule-scan-image.yaml | 2 +- images/builder/Dockerfile | 12 ++++++------ 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.builder-image-version.txt b/.builder-image-version.txt index 9faa1b7a..c946ee61 100644 --- a/.builder-image-version.txt +++ b/.builder-image-version.txt @@ -1 +1 @@ -0.1.5 +0.1.6 diff --git a/.github/workflows/pr-lint.yaml b/.github/workflows/pr-lint.yaml index 13f7c10d..9a4aa5d0 100644 --- a/.github/workflows/pr-lint.yaml +++ b/.github/workflows/pr-lint.yaml @@ -23,7 +23,7 @@ jobs: if: github.event_name != 'pull_request' || !github.event.pull_request.draft runs-on: ubuntu-latest container: - image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.5 + image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.6 credentials: username: ${{ github.actor }} password: ${{ secrets.github_token }} diff --git a/.github/workflows/schedule-scan-image.yaml b/.github/workflows/schedule-scan-image.yaml index baa36176..e45a6875 100644 --- a/.github/workflows/schedule-scan-image.yaml +++ b/.github/workflows/schedule-scan-image.yaml @@ -9,7 +9,7 @@ jobs: name: Trivy runs-on: ubuntu-latest container: - image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.5 + image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.6 credentials: username: ${{ github.actor }} password: ${{ secrets.github_token }} diff --git a/images/builder/Dockerfile b/images/builder/Dockerfile index f45c59bb..fab611c4 100644 --- a/images/builder/Dockerfile +++ b/images/builder/Dockerfile @@ -24,19 +24,19 @@ FROM docker.io/hadolint/hadolint:v2.12.0-alpine@sha256:3c206a451cec6d486367e7586 FROM cgr.dev/chainguard/wolfi-base:latest as wolfi # update: datasource=github-tags depName=kubernetes-sigs/cluster-api -ENV CLUSTERCTL_VERSION="v1.8.5" +ENV CLUSTERCTL_VERSION="v1.9.3" # update: datasource=github-tags depName=golangci/golangci-lint -ENV GOLANGCI_VERSION="v1.62.2" +ENV GOLANGCI_VERSION="v1.63.4" # update: datasource=github-tags depName=kubernetes-sigs/kind -ENV KIND_VERSION="v0.25.0" +ENV KIND_VERSION="v0.26.0" # update: datasource=github-tags depName=kubernetes/kubernetes ARG KUBECTL_VERSION="v1.31.0" # update: datasource=github-tags depName=kubernetes-sigs/kustomize extractVersion=^kustomize\/v(?.+)$ ENV KUSTOMIZE_VERSION="v5.3.0" # update: datasource=github-tags depName=aquasecurity/trivy -ENV TRIVY_VERSION="v0.57.1" +ENV TRIVY_VERSION="v0.58.1" # update: datasource=github-tags depName=kubernetes-sigs/controller-tools -ENV CONTROLLER_GEN_VERSION="v0.16.5" +ENV CONTROLLER_GEN_VERSION="v0.17.0" # hadolint ignore=DL3018 RUN apk add -U --no-cache \ @@ -54,7 +54,7 @@ RUN curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/in ############################ # CSPO Build Image Base # ############################ -FROM docker.io/library/golang:1.23.3-bullseye +FROM docker.io/library/golang:1.23.4-bullseye # update: datasource=github-tags depName=adrienverge/yamllint versioning=semver ENV YAMLLINT_VERSION="v1.35.1"