Skip to content

Commit 5ffe3bf

Browse files
committed
Merge branch 'renovate/golang-deps' of https://github.com/SovereignCloudStack/cluster-stack-operator into renovate/golang-deps
2 parents 992920d + 851a169 commit 5ffe3bf

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
6666
# Load Golang cache build from GitHub
6767
- name: Load cso Golang cache build from GitHub
68-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
68+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
6969
id: cache
7070
with:
7171
path: /tmp/.cache/cso
@@ -120,7 +120,7 @@ jobs:
120120
121121
# Upload artifact digests
122122
- name: Upload artifact digests
123-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
123+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
124124
with:
125125
name: image-digest
126126
path: image-digest

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
107107
# Upload artifact digests
108108
- name: Upload artifact digests
109-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
109+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
110110
with:
111111
name: image-digest cso
112112
path: image-digest

.github/workflows/schedule-cache-cleaner-cso-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
# Load Golang cache build from GitHub
1717
- name: Load cso Golang cache build from GitHub
18-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
18+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
1919
id: cache
2020
with:
2121
path: /tmp/.cache/cso

.github/workflows/schedule-update-bot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
echo "LOG_LEVEL=${{ github.event.inputs.logLevel || env.LOG_LEVEL }}" >> "$GITHUB_ENV"
4646
4747
- name: Renovate
48-
uses: renovatebot/github-action@d385c88822a237acaead89c462fa0aef7502748f # v41.0.11
48+
uses: renovatebot/github-action@c21017a4a2fc9f42953bcc907e375a5a544557ec # v41.0.18
4949
env:
5050
RENOVATE_HOST_RULES: '[{"hostType": "docker", "matchHost": "ghcr.io", "username": "${{ github.actor }}", "password": "${{ secrets.GITHUB_TOKEN }}" }]'
5151
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: '[".*"]'

images/cache/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515

16-
FROM docker.io/library/alpine:3.21.2@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099 as import-cache
16+
FROM docker.io/library/alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c as import-cache
1717

1818
RUN --mount=type=bind,target=/host-tmp \
1919
--mount=type=cache,target=/root/.cache \
@@ -27,7 +27,7 @@ RUN --mount=type=bind,target=/host-tmp \
2727
tar xzf /host-tmp/go-pkg-cache.tar.gz --no-same-owner -C /go/pkg; \
2828
fi
2929

30-
FROM docker.io/library/alpine:3.21.2@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099 as cache-creator
30+
FROM docker.io/library/alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c as cache-creator
3131
RUN --mount=type=cache,target=/root/.cache \
3232
--mount=type=cache,target=/go/pkg \
3333
tar czf /tmp/go-build-cache.tar.gz -C /root/.cache/go-build . ; \

images/cso/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM --platform=${BUILDPLATFORM} docker.io/alpine/helm:3.17.0 as helm
15+
FROM --platform=${BUILDPLATFORM} docker.io/alpine/helm:3.17.2 as helm
1616

1717
# Build the manager binary
1818
FROM --platform=${BUILDPLATFORM} docker.io/library/golang:1.23.5-bullseye as build
@@ -25,7 +25,7 @@ RUN --mount=type=cache,target=/root/.cache --mount=type=cache,target=/go/pkg \
2525
go build -mod=vendor -ldflags "${LDFLAGS} -extldflags '-static'" \
2626
-o manager cmd/main.go
2727

28-
FROM --platform=${BUILDPLATFORM} docker.io/library/alpine:3.21.2
28+
FROM --platform=${BUILDPLATFORM} docker.io/library/alpine:3.21.3
2929
WORKDIR /
3030
COPY --from=build /src/cluster-stack-operator/manager .
3131
COPY --from=helm --chown=root:root --chmod=755 /usr/bin/helm /usr/local/bin/helm

0 commit comments

Comments
 (0)