File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -11,19 +11,19 @@ permissions:
1111
1212jobs :
1313 lint :
14- runs-on : ubuntu-22.04
14+ runs-on : ubuntu-latest
1515 steps :
16- - uses : actions/checkout@v3
16+ - uses : actions/checkout@v4
1717 with :
1818 submodules : recursive
19- - uses : actions/setup-go@v4
19+ - uses : actions/setup-go@v5
2020 with :
21- go-version : ' 1.21 '
21+ go-version : ' 1.23 '
2222 cache : false
2323 - name : golangci-lint
2424 uses : golangci/golangci-lint-action@v3
2525 with :
26- version : v1.55
26+ version : v1.60
2727 only-new-issues : true
2828 env :
2929 CGO_ENABLED : 0
Original file line number Diff line number Diff line change 1- FROM golang:1.21 -alpine3.18 AS builder
1+ FROM golang:1.23 -alpine3.20 AS builder
22MAINTAINER DeepFence
33
44RUN apk update
@@ -7,6 +7,6 @@ WORKDIR /go
77COPY . compliance
88RUN cd compliance && make clean && make
99
10- FROM alpine:3.18
10+ FROM alpine:3.20
1111MAINTAINER DeepFence
1212COPY --from=builder /go/compliance/compliance /usr/bin/compliance
You can’t perform that action at this time.
0 commit comments