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:
11
11
12
12
jobs :
13
13
lint :
14
- runs-on : ubuntu-22.04
14
+ runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
17
17
with :
18
18
submodules : recursive
19
- - uses : actions/setup-go@v4
19
+ - uses : actions/setup-go@v5
20
20
with :
21
- go-version : ' 1.21 '
21
+ go-version : ' 1.23 '
22
22
cache : false
23
23
- name : golangci-lint
24
24
uses : golangci/golangci-lint-action@v3
25
25
with :
26
- version : v1.55
26
+ version : v1.60
27
27
only-new-issues : true
28
28
env :
29
29
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
2
2
MAINTAINER DeepFence
3
3
4
4
RUN apk update
@@ -7,6 +7,6 @@ WORKDIR /go
7
7
COPY . compliance
8
8
RUN cd compliance && make clean && make
9
9
10
- FROM alpine:3.18
10
+ FROM alpine:3.20
11
11
MAINTAINER DeepFence
12
12
COPY --from=builder /go/compliance/compliance /usr/bin/compliance
You can’t perform that action at this time.
0 commit comments