File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ executors:
4
4
golang :
5
5
working_directory : /go/src/moul.io/cryptoguess
6
6
docker :
7
- - image : circleci/golang:1.14
7
+ - image : circleci/golang:1.17
8
8
environment :
9
9
GO111MODULE : " on"
10
10
DOCKER_IMAGE : moul/cryptoguess
@@ -14,12 +14,12 @@ executors:
14
14
- image : docker:18.06.3-ce-git
15
15
16
16
orbs :
17
- codecov : codecov/codecov@1.0 .5
18
- moul : moul/build@1.5 .0
17
+ codecov : codecov/codecov@1.2 .5
18
+ moul : moul/build@1.16 .0
19
19
retry : moul/retry@0.6.0
20
- docker : circleci/docker@0.5.13
20
+ docker : circleci/docker@0.6.1
21
21
# dl: moul/dl@1.7.0
22
- tools : gotest/tools@0.0.9
22
+ tools : gotest/tools@0.0.14
23
23
24
24
jobs :
25
25
go-build :
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
steps :
9
9
- uses : actions/checkout@master
10
- - uses : codfish/semantic-release-action@v1.9 .0
10
+ - uses : codfish/semantic-release-action@v1.10 .0
11
11
if : github.ref == 'refs/heads/master'
12
12
env :
13
13
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
1
# build
2
- FROM golang:1.16.5 -alpine as builder
2
+ FROM golang:1.23.6 -alpine as builder
3
3
RUN apk add --no-cache git gcc musl-dev make
4
4
ENV GO111MODULE=on
5
5
WORKDIR /go/src/moul.io/cryptoguess
@@ -9,7 +9,7 @@ COPY . ./
9
9
RUN make install
10
10
11
11
# minimalist runtime
12
- FROM alpine:3.13.5
12
+ FROM alpine:3.21.2
13
13
COPY --from=builder /go/bin/cryptoguess /bin/
14
14
ENTRYPOINT ["/bin/cryptoguess" ]
15
15
CMD []
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ require (
6
6
github.com/davecgh/go-spew v1.1.1 // indirect
7
7
github.com/google/go-cmp v0.5.4 // indirect
8
8
github.com/stretchr/testify v1.3.0 // indirect
9
- golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
9
+ golang.org/x/crypto v0.32.0
10
10
golang.org/x/sys v0.0.0-20190804053845-51ab0e2deafa // indirect
11
11
gopkg.in/square/go-jose.v2 v2.6.0
12
- gopkg.in/urfave/cli.v2 v2.0.0-20190806201727-b62605953717
12
+ gopkg.in/urfave/cli.v2 v2.27.5
13
13
)
You can’t perform that action at this time.
0 commit comments