File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1111 - uses : actions/checkout@v2
1212 - uses : actions/setup-go@v2
1313 with :
14- go-version : " 1.22"
14+ go-version-file : ' go.mod'
15+ cache : true
1516 - name : lint
1617 run : |
1718 curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2
Original file line number Diff line number Diff line change 1111 - uses : actions/checkout@v2
1212 - uses : actions/setup-go@v2
1313 with :
14- go-version : " 1.22"
14+ go-version-file : ' go.mod'
15+ cache : true
1516 - name : Run testing
1617 run : go test -race -v ./...
Original file line number Diff line number Diff line change 1- FROM golang:1.22.1 as build-env
1+ FROM golang:1.23.5 AS build-env
22
33ADD . /app
44WORKDIR /app
@@ -7,7 +7,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build
77
88# -----------------------------------------------------------------------------
99
10- FROM alpine:3.19.0
10+ FROM alpine:3.21.2
1111
1212RUN addgroup -S -g 10000 api \
1313 && adduser -S -D -u 10000 -s /sbin/nologin -G api api
Original file line number Diff line number Diff line change 11module github.com/appclacks/cabourotte
22
3- go 1.22.7
4-
5- toolchain go1.22.10
3+ go 1.23.5
64
75require (
86 github.com/cespare/xxhash/v2 v2.3.0 // indirect
You can’t perform that action at this time.
0 commit comments