Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.

Commit b2d267d

Browse files
🌱 Update Builder Image group (#30)
| datasource | package | from | to | | ----------- | ------------------------ | ------- | ------- | | github-tags | adrienverge/yamllint | v1.32.0 | v1.33.0 | | docker | docker.io/aquasec/trivy | 0.47.0 | 0.48.3 | | docker | docker.io/library/alpine | 3.18.4 | 3.19.0 | | docker | docker.io/library/golang | 1.21.3 | 1.21.6 | | github-tags | lycheeverse/lychee | v0.13.0 | v0.14.1 | Co-authored-by: cluster-stack-bot[bot] <143188378+cluster-stack-bot[bot]@users.noreply.github.com> Co-authored-by: Michal Gubricky <[email protected]>
1 parent b571715 commit b2d267d

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

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

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 cspo Builder Image
1111
runs-on: ubuntu-latest
1212
container:
13-
image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.0
13+
image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.1
1414
credentials:
1515
username: ${{ github.actor }}
1616
password: ${{ secrets.github_token }}

.github/workflows/pr-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
2323
runs-on: ubuntu-latest
2424
container:
25-
image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.0
25+
image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.1
2626
credentials:
2727
username: ${{ github.actor }}
2828
password: ${{ secrets.github_token }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Trivy
1010
runs-on: ubuntu-latest
1111
container:
12-
image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.0
12+
image: ghcr.io/sovereigncloudstack/cspo-builder:0.1.1
1313
credentials:
1414
username: ${{ github.actor }}
1515
password: ${{ secrets.github_token }}

images/builder/Dockerfile

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

1919
# Install Lychee
20-
FROM docker.io/library/alpine:3.18.4@sha256:48d9183eb12a05c99bcc0bf44a003607b8e941e1d4f41f9ad12bdcc4b5672f86 as lychee
20+
FROM docker.io/library/alpine:3.19.0@sha256:13b7e62e8df80264dbb747995705a986aa530415763a6c58f84a3ca8af9a5bcd as lychee
2121
# update: datasource=github-tags depName=lycheeverse/lychee versioning=semver
22-
ENV LYCHEE_VERSION="v0.13.0"
22+
ENV LYCHEE_VERSION="v0.14.1"
2323
# hadolint ignore=DL3018
2424
RUN apk add --no-cache curl && \
2525
curl -L -o /tmp/lychee-${LYCHEE_VERSION}.tgz https://github.com/lycheeverse/lychee/releases/download/${LYCHEE_VERSION}/lychee-${LYCHEE_VERSION}-x86_64-unknown-linux-gnu.tar.gz && \
@@ -28,7 +28,7 @@ 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.18.4@sha256:48d9183eb12a05c99bcc0bf44a003607b8e941e1d4f41f9ad12bdcc4b5672f86 as golangci
31+
FROM docker.io/library/alpine:3.19.0@sha256:13b7e62e8df80264dbb747995705a986aa530415763a6c58f84a3ca8af9a5bcd as golangci
3232
# update: datasource=github-tags depName=golangci/golangci-lint versioning=semver
3333
ENV GOLANGCI_VERSION="v1.55.2"
3434
WORKDIR /
@@ -43,17 +43,17 @@ RUN apk add --no-cache curl && \
4343
FROM docker.io/hadolint/hadolint:v2.12.0-alpine@sha256:7dba9a9f1a0350f6d021fb2f6f88900998a4fb0aaf8e4330aa8c38544f04db42 as hadolint
4444

4545
# Install Trivy
46-
FROM docker.io/aquasec/trivy:0.47.0@sha256:163b935486680eefe46e38534eaeabd95e36e0e6b7b3fa5d08fb1e05c6ad9f20 as trivy
46+
FROM docker.io/aquasec/trivy:0.48.3@sha256:52cb80d5bf969252b907a76495908a35c158238de3b1638747ccdffa9c7fe7e3 as trivy
4747

4848
############################
4949
# Cspo Build Image Base #
5050
############################
51-
FROM docker.io/library/golang:1.21.3-bullseye@sha256:bea700cb2a4b3df3add033cea317d5e1dd7a59412d1b6fe25ceb257bcfdc6a1d
51+
FROM docker.io/library/golang:1.21.6-bullseye@sha256:4ff32e92534a75df6b47bce4e5a4678bcd8fbb76805c647e0e855c60f0ce9641
5252

5353
# update: datasource=repology depName=debian_11/skopeo versioning=loose
5454
ENV SKOPEO_VERSION="1.2.2+dfsg1-1+b6"
5555
# update: datasource=github-tags depName=adrienverge/yamllint versioning=semver
56-
ENV YAMLLINT_VERSION="v1.32.0"
56+
ENV YAMLLINT_VERSION="v1.33.0"
5757
# update: datasource=github-tags depName=opt-nc/yamlfixer versioning=semver
5858
ENV YAMLFIXER_VERSION="0.9.15"
5959

0 commit comments

Comments
 (0)