File tree 5 files changed +1321
-88
lines changed
5 files changed +1321
-88
lines changed Original file line number Diff line number Diff line change 56
56
uses : actions/setup-go@v3
57
57
with :
58
58
go-version : ${{ matrix.golang }}
59
- - uses : actions/cache@v3.2.6
59
+ - uses : actions/cache@v3.3.1
60
60
with :
61
61
path : ~/go/pkg/mod
62
62
key : ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
83
83
uses : actions/setup-go@v3
84
84
with :
85
85
go-version : ${{ matrix.golang }}
86
- - uses : actions/cache@v3.2.6
86
+ - uses : actions/cache@v3.3.1
87
87
with :
88
88
path : ~/go/pkg/mod
89
89
key : ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
Original file line number Diff line number Diff line change 37
37
-
38
38
name : Cache Go modules
39
39
if : steps.semantic.outputs.new-release-published == 'true' && steps.repoman.outputs.has-go-binary == 'true'
40
- uses : actions/cache@v3.2.6
40
+ uses : actions/cache@v3.3.1
41
41
with :
42
42
path : ~/go/pkg/mod
43
43
key : ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ 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.19.2 -alpine as builder
7
+ FROM golang:1.20.5 -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/assh
@@ -14,7 +14,7 @@ COPY . ./
14
14
RUN make install
15
15
16
16
# minimalist runtime
17
- FROM alpine:3.16 .0
17
+ FROM alpine:3.18 .0
18
18
LABEL org.label-schema.build-date=$BUILD_DATE \
19
19
org.label-schema.name="assh" \
20
20
org.label-schema.description="" \
You can’t perform that action at this time.
0 commit comments