File tree 5 files changed +548
-29
lines changed 5 files changed +548
-29
lines changed Original file line number Diff line number Diff line change 42
42
with :
43
43
go-version : 1.14
44
44
- name : Cache Go modules
45
- uses : actions/cache@v2.1.7
45
+ uses : actions/cache@v2.1.8
46
46
with :
47
47
path : ~/go/pkg/mod
48
48
key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
60
60
steps :
61
61
- uses : actions/checkout@v3
62
62
- name : golangci-lint
63
- uses : golangci/golangci-lint-action@v3.1.0
63
+ uses : golangci/golangci-lint-action@v3.7.1
64
64
with :
65
65
version : v1.28
66
66
github-token : ${{ secrets.GITHUB_TOKEN }}
@@ -100,7 +100,7 @@ jobs:
100
100
uses : actions/setup-go@v2
101
101
with :
102
102
go-version : ${{ matrix.golang }}
103
- - uses : actions/cache@v2.1.7
103
+ - uses : actions/cache@v2.1.8
104
104
with :
105
105
path : ~/go/pkg/mod
106
106
key : ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
@@ -143,7 +143,7 @@ jobs:
143
143
uses : actions/setup-go@v2
144
144
with :
145
145
go-version : ${{ matrix.golang }}
146
- - uses : actions/cache@v2.1.7
146
+ - uses : actions/cache@v2.1.8
147
147
with :
148
148
path : ~/go/pkg/mod
149
149
key : ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
Original file line number Diff line number Diff line change 30
30
-
31
31
name : Cache Go modules
32
32
if : steps.semantic.outputs.new-release-published == 'true'
33
- uses : actions/cache@v2.1.7
33
+ uses : actions/cache@v2.1.8
34
34
with :
35
35
path : ~/go/pkg/mod
36
36
key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ ARG VCS_REF
4
4
ARG VERSION
5
5
6
6
# build
7
- FROM golang:1.18.1 -alpine as builder
7
+ FROM golang:1.23.4 -alpine as builder
8
8
RUN apk add --no-cache git gcc musl-dev make
9
9
ENV GO111MODULE=on
10
10
WORKDIR /go/src/moul.io/grpcbin
@@ -15,7 +15,7 @@ COPY . ./
15
15
RUN go build -o /go/bin/grpcbin -ldflags "-extldflags \" -static\" " -v
16
16
17
17
# minimalist runtime
18
- FROM alpine:3.15.1
18
+ FROM alpine:3.21.0
19
19
LABEL org.label-schema.build-date=$BUILD_DATE \
20
20
org.label-schema.name="grpcbin" \
21
21
org.label-schema.description="" \
You can’t perform that action at this time.
0 commit comments