Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 Update Builder Image group #208

Merged
merged 3 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .builder-image-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.4
0.1.5
2 changes: 1 addition & 1 deletion .github/workflows/pr-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4
image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.5
credentials:
username: ${{ github.actor }}
password: ${{ secrets.github_token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-scan-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Trivy
runs-on: ubuntu-latest
container:
image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.4
image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.5
credentials:
username: ${{ github.actor }}
password: ${{ secrets.github_token }}
Expand Down
12 changes: 6 additions & 6 deletions images/builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.2"
ENV CLUSTERCTL_VERSION="v1.8.5"
# update: datasource=github-tags depName=golangci/golangci-lint
ENV GOLANGCI_VERSION="v1.60.3"
ENV GOLANGCI_VERSION="v1.62.2"
# update: datasource=github-tags depName=kubernetes-sigs/kind
ENV KIND_VERSION="v0.24.0"
ENV KIND_VERSION="v0.25.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(?<version>.+)$
ENV KUSTOMIZE_VERSION="v5.3.0"
# update: datasource=github-tags depName=aquasecurity/trivy
ENV TRIVY_VERSION="v0.55.0"
ENV TRIVY_VERSION="v0.57.1"
# update: datasource=github-tags depName=kubernetes-sigs/controller-tools
ENV CONTROLLER_GEN_VERSION="v0.16.2"
ENV CONTROLLER_GEN_VERSION="v0.16.5"

# hadolint ignore=DL3018
RUN apk add -U --no-cache \
Expand All @@ -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.0-bullseye
FROM docker.io/library/golang:1.23.3-bullseye

# update: datasource=github-tags depName=adrienverge/yamllint versioning=semver
ENV YAMLLINT_VERSION="v1.35.1"
Expand Down
Loading