Skip to content

Commit 1ad3df5

Browse files
🌱 Update Builder Image group
| datasource | package | from | to | | ----------- | --------------------------- | ------- | ------- | | github-tags | adrienverge/yamllint | v1.36.2 | v1.37.1 | | docker | docker.io/aquasec/trivy | 0.60.0 | 0.67.1 | | docker | docker.io/hadolint/hadolint | v2.12.0 | v2.14.0 | | docker | docker.io/library/alpine | 3.21.3 | 3.22.2 | | docker | docker.io/library/golang | 1.24.5 | 1.24.6 | | github-tags | golangci/golangci-lint | v1.64.8 | v2.5.0 | | github-tags | helm/helm | v3.18.6 | v3.19.0 |
1 parent 0f77fe3 commit 1ad3df5

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.builder-image-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.25
1+
1.0.26

.github/workflows/main-promote-builder-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Promote Latest tag to Caph Builder Image
1111
runs-on: ubuntu-latest
1212
container:
13-
image: ghcr.io/syself/caph-builder:1.0.25
13+
image: ghcr.io/syself/caph-builder:1.0.26
1414
credentials:
1515
username: ${{ github.actor }}
1616
password: ${{ secrets.github_token }}

.github/workflows/pr-e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
4040
runs-on: ubuntu-latest
4141
container:
42-
image: ghcr.io/syself/caph-builder:1.0.25
42+
image: ghcr.io/syself/caph-builder:1.0.26
4343
credentials:
4444
username: ${{ github.actor }}
4545
password: ${{ secrets.github_token }}

.github/workflows/pr-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: "Lint Pull Request"
2323
runs-on: ubuntu-latest
2424
container:
25-
image: ghcr.io/syself/caph-builder:1.0.25
25+
image: ghcr.io/syself/caph-builder:1.0.26
2626
credentials:
2727
username: ${{ github.actor }}
2828
password: ${{ secrets.github_token }}

.github/workflows/pr-verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
issues: write
1212
runs-on: ubuntu-latest
1313
container:
14-
image: ghcr.io/syself/caph-builder:1.0.25
14+
image: ghcr.io/syself/caph-builder:1.0.26
1515
credentials:
1616
username: ${{ github.actor }}
1717
password: ${{ secrets.github_token }}

.github/workflows/schedule-scan-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
if: github.repository == 'syself/cluster-api-provider-hetzner'
1212
container:
13-
image: ghcr.io/syself/caph-builder:1.0.25
13+
image: ghcr.io/syself/caph-builder:1.0.26
1414
credentials:
1515
username: ${{ github.actor }}
1616
password: ${{ secrets.github_token }}

images/builder/Dockerfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# If you make changes to this Dockerfile run `make builder-image-push`.
1818

1919
# Install Lychee
20-
FROM docker.io/library/alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c AS lychee
20+
FROM docker.io/library/alpine:3.22.2@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2ad8dd412 AS lychee
2121
# update: datasource=github-tags depName=lycheeverse/lychee versioning=semver
2222
ENV LYCHEE_VERSION="v0.15.1"
2323
# hadolint ignore=DL3018
@@ -28,29 +28,29 @@ RUN apk add --no-cache curl && \
2828
rm -rf /tmp/linux-amd64 /tmp/lychee-${LYCHEE_VERSION}.tgz
2929

3030
# Install Golang CI Lint
31-
FROM docker.io/library/alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c AS golangci
31+
FROM docker.io/library/alpine:3.22.2@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2ad8dd412 AS golangci
3232
# update: datasource=github-tags depName=golangci/golangci-lint versioning=semver
33-
ENV GOLANGCI_VERSION="v1.64.8"
33+
ENV GOLANGCI_VERSION="v2.5.0"
3434
WORKDIR /
3535
# hadolint ignore=DL3018,DL4006
3636
RUN apk add --no-cache curl && \
3737
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s ${GOLANGCI_VERSION}
3838

3939
# Install Hadolint
40-
FROM docker.io/hadolint/hadolint:v2.12.0-alpine@sha256:3c206a451cec6d486367e758645269fd7d696c5ccb6ff59d8b03b0e45268a199 AS hadolint
40+
FROM docker.io/hadolint/hadolint:v2.14.0-alpine@sha256:7aba693c1442eb31c0b015c129697cb3b6cb7da589d85c7562f9deb435a6657c AS hadolint
4141

4242
# Install Trivy
43-
FROM docker.io/aquasec/trivy:0.60.0@sha256:91c3a842834563a6860dbaec5af7c1949df5caf988f9632ef5cbb0a5cd59d8f8 AS trivy
43+
FROM docker.io/aquasec/trivy:0.67.1@sha256:c0ed528623baf6e250e2225010e5fbb4b91f6983595dafc1beb81ff686ba4734 AS trivy
4444

4545
############################
4646
# Caph Build Image Base #
4747
############################
48-
FROM docker.io/library/golang:1.24.5-bullseye@sha256:62ba6b19de03e891f7fa1001326bd48411f2626ff35e7ba5b9d890711ce581d9
48+
FROM docker.io/library/golang:1.24.6-bullseye@sha256:2cdc80dc25edcb96ada1654f73092f2928045d037581fa4aa7c40d18af7dd85a
4949

5050
# update: datasource=repology depName=debian_11/skopeo versioning=loose
5151
ENV SKOPEO_VERSION="1.2.2+dfsg1-1+b6"
5252
# update: datasource=github-tags depName=adrienverge/yamllint versioning=semver
53-
ENV YAMLLINT_VERSION="v1.36.2"
53+
ENV YAMLLINT_VERSION="v1.37.1"
5454
# update: datasource=github-tags depName=opt-nc/yamlfixer versioning=semver
5555
ENV YAMLFIXER_VERSION="0.9.15"
5656

@@ -80,7 +80,7 @@ ENV GOCACHE=/go/cache
8080

8181
## Install Helm
8282
# update: datasource=github-tags depName=helm/helm versioning=semver
83-
ENV HELM_VERSION="v3.18.6"
83+
ENV HELM_VERSION="v3.19.0"
8484
RUN curl -sSL https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz | tar xz -C /usr/local/bin --strip-components=1 linux-amd64/helm
8585
RUN chmod a+rx /usr/local/bin/helm
8686

0 commit comments

Comments
 (0)