Skip to content

Commit

Permalink
chore(deps): update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Mar 4, 2024
1 parent 09fdae0 commit 12d1ac8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -4,7 +4,7 @@ executors:
golang:
working_directory: /go/src/moul.io/cryptoguess
docker:
- image: circleci/golang:1.14
- image: circleci/golang:1.17
environment:
GO111MODULE: "on"
DOCKER_IMAGE: moul/cryptoguess
Expand All @@ -19,7 +19,7 @@ orbs:
retry: moul/retry@0.6.0
docker: circleci/docker@0.5.13
#dl: moul/dl@1.7.0
tools: gotest/tools@0.0.9
tools: gotest/tools@0.0.14

jobs:
go-build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: codfish/semantic-release-action@v1.9.0
- uses: codfish/semantic-release-action@v1.10.0
if: github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,5 +1,5 @@
# build
FROM golang:1.16.5-alpine as builder
FROM golang:1.22.0-alpine as builder
RUN apk add --no-cache git gcc musl-dev make
ENV GO111MODULE=on
WORKDIR /go/src/moul.io/cryptoguess
Expand All @@ -9,7 +9,7 @@ COPY . ./
RUN make install

# minimalist runtime
FROM alpine:3.13.5
FROM alpine:3.19.1
COPY --from=builder /go/bin/cryptoguess /bin/
ENTRYPOINT ["/bin/cryptoguess"]
CMD []
4 changes: 2 additions & 2 deletions go.mod
Expand Up @@ -6,8 +6,8 @@ require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-cmp v0.5.4 // indirect
github.com/stretchr/testify v1.3.0 // indirect
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
golang.org/x/crypto v0.21.0
golang.org/x/sys v0.0.0-20190804053845-51ab0e2deafa // indirect
gopkg.in/square/go-jose.v2 v2.6.0
gopkg.in/urfave/cli.v2 v2.0.0-20190806201727-b62605953717
gopkg.in/urfave/cli.v2 v2.27.1
)

0 comments on commit 12d1ac8

Please sign in to comment.