File tree Expand file tree Collapse file tree 4 files changed +30
-6
lines changed Expand file tree Collapse file tree 4 files changed +30
-6
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " gomod"
4
+ directory : " /"
5
+ schedule :
6
+ interval : " weekly"
7
+
8
+ - package-ecosystem : " docker"
9
+ directory : " /"
10
+ schedule :
11
+ interval : " weekly"
12
+
13
+ - package-ecosystem : " github-actions"
14
+ directory : " /"
15
+ schedule :
16
+ interval : " weekly"
17
+ groups :
18
+ k8s :
19
+ patterns :
20
+ - " k8s.io/*"
21
+ - " sigs.k8s.io/*"
22
+ onsi :
23
+ patterns :
24
+ - " github.com/onsi/*"
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Clone the code
13
- uses : actions/checkout@v4
13
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
14
14
15
15
- name : Setup Go
16
- uses : actions/setup-go@v5
16
+ uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
17
17
with :
18
18
go-version-file : ' go.mod'
19
19
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Clone the code
13
- uses : actions/checkout@v4
13
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
14
14
15
15
- name : Setup Go
16
- uses : actions/setup-go@v5
16
+ uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a
17
17
with :
18
18
go-version-file : ' go.mod'
19
19
Original file line number Diff line number Diff line change 1
1
# Build the manager binary
2
- FROM golang:1.23 AS builder
2
+ FROM golang:1.23@sha256:7ea4c9dcb2b97ff8ee80a67db3d44f98c8ffa0d191399197007d8459c1453041 AS builder
3
3
ARG TARGETOS
4
4
ARG TARGETARCH
5
5
@@ -25,7 +25,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -a -o ma
25
25
26
26
# Use distroless as minimal base image to package the manager binary
27
27
# Refer to https://github.com/GoogleContainerTools/distroless for more details
28
- FROM gcr.io/distroless/static:nonroot
28
+ FROM gcr.io/distroless/static:nonroot@sha256:6cd937e9155bdfd805d1b94e037f9d6a899603306030936a3b11680af0c2ed58
29
29
WORKDIR /
30
30
COPY --from=builder /workspace/manager .
31
31
USER 65532:65532
You can’t perform that action at this time.
0 commit comments