diff --git a/.builder-image-version.txt b/.builder-image-version.txt index 93325dde..63b41b20 100644 --- a/.builder-image-version.txt +++ b/.builder-image-version.txt @@ -1 +1 @@ -1.1.27 +1.1.28 \ No newline at end of file diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml index fd13f862..fd2e46ba 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.27 + image: ghcr.io/sovereigncloudstack/cso-builder:1.1.28 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 1ddd930b..4d6192a7 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.27 + image: ghcr.io/sovereigncloudstack/cso-builder:1.1.28 credentials: username: ${{ github.actor }} password: ${{ secrets.github_token }} diff --git a/images/builder/Dockerfile b/images/builder/Dockerfile index 6072c95b..788800d6 100644 --- a/images/builder/Dockerfile +++ b/images/builder/Dockerfile @@ -17,7 +17,7 @@ # If you make changes to this Dockerfile run `make builder-image-push`. # Install Lychee -FROM docker.io/library/alpine:3.21.2 AS lychee +FROM docker.io/library/alpine:3.21.3 AS lychee # update: datasource=github-tags depName=lycheeverse/lychee versioning=semver ENV LYCHEE_VERSION="v0.15.1" # hadolint ignore=DL3018 @@ -34,7 +34,7 @@ FROM cgr.dev/chainguard/wolfi-base:latest AS wolfi # update: datasource=github-tags depName=kubernetes-sigs/cluster-api ARG CLUSTERCTL_VERSION="v1.8.1" # update: datasource=github-tags depName=helm/helm -ENV HELM_VERSION="v3.17.0" +ENV HELM_VERSION="v3.17.2" # update: datasource=github-tags depName=kubernetes-sigs/kind ARG KIND_VERSION="v0.24.0" # update: datasource=github-tags depName=kubernetes/kubernetes @@ -58,9 +58,9 @@ RUN apk add -U --no-cache \ trivy=~${TRIVY_VERSION#v} # Install Golang CI Lint -FROM docker.io/library/alpine:3.21.2 AS golangci +FROM docker.io/library/alpine:3.21.3 AS golangci # update: datasource=github-tags depName=golangci/golangci-lint versioning=semver -ENV GOLANGCI_VERSION="v1.63.4" +ENV GOLANGCI_VERSION="v2.0.2" WORKDIR / # hadolint ignore=DL3018,DL4006 RUN apk add --no-cache curl && \ @@ -70,7 +70,7 @@ RUN apk add --no-cache curl && \ FROM docker.io/hadolint/hadolint:v2.12.0-alpine@sha256:3c206a451cec6d486367e758645269fd7d696c5ccb6ff59d8b03b0e45268a199 AS hadolint # Install Trivy -FROM docker.io/aquasec/trivy:0.58.2 AS trivy +FROM docker.io/aquasec/trivy:0.61.0 AS trivy ############################ # CSO Build Image Base # @@ -78,7 +78,7 @@ FROM docker.io/aquasec/trivy:0.58.2 AS trivy FROM docker.io/library/golang:1.23.5-bullseye # update: datasource=github-tags depName=adrienverge/yamllint versioning=semver -ENV YAMLLINT_VERSION="v1.35.1" +ENV YAMLLINT_VERSION="v1.37.0" # update: datasource=github-tags depName=opt-nc/yamlfixer versioning=semver ENV YAMLFIXER_VERSION="0.9.15"