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

fix: renovate vol3 #123

Merged
merged 2 commits into from
Dec 17, 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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.23 AS builder
FROM golang:1.23.3-alpine3.20@sha256:25db3a0508ff009054bf467f25e1ab395fced0f93b69459dd736ae523e61c781 AS builder
ARG TARGETOS
ARG TARGETARCH

Expand All @@ -25,7 +25,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -a -o ma

# Use distroless as minimal base image to package the manager binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM gcr.io/distroless/static:nonroot
FROM gcr.io/distroless/static:nonroot@sha256:6cd937e9155bdfd805d1b94e037f9d6a899603306030936a3b11680af0c2ed58
WORKDIR /
COPY --from=builder /workspace/manager .
USER 65532:65532
Expand Down
14 changes: 0 additions & 14 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"schedule:daily",
"group:all"
],
"allowedPostUpgradeCommands": ["^make (tidy|generate)$"],
"configMigration": true,
"constraints": {
"go": "1.23"
Expand Down Expand Up @@ -80,19 +79,6 @@
"gomodTidy",
"gomodUpdateImportPaths"
],
"postUpgradeTasks": {
"commands": [
"make tidy",
"make generate"
],
"fileFilters": [
"**/go.mod",
"**/go.sum",
"**/*.go",
"**/*.yaml"
],
"executionMode": "branch"
},
"printConfig": false,
"rebaseWhen": "behind-base-branch",
"semanticCommits": "enabled",
Expand Down
Loading