diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 1b44c43..5b2fa28 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v2 - run: | git fetch --prune --unshallow --tags - - uses: snyk/release-notes-preview@v1.6.1 + - uses: snyk/release-notes-preview@v1.6.2 with: releaseBranch: master env: diff --git a/Dockerfile b/Dockerfile index c89d1ae..c08613f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG VCS_REF ARG VERSION # build -FROM golang:1.15.8-alpine as builder +FROM golang:1.20.7-alpine as builder RUN apk add --no-cache git gcc musl-dev make ENV GO111MODULE=on WORKDIR /go/src/moul.io/berty-library-test @@ -14,7 +14,7 @@ COPY . ./ RUN make install # minimalist runtime -FROM alpine:3.13 +FROM alpine:3.18 LABEL org.label-schema.build-date=$BUILD_DATE \ org.label-schema.name="berty-library-test" \ org.label-schema.description="" \ diff --git a/go.mod b/go.mod index 90f1b5e..a1e1a3e 100644 --- a/go.mod +++ b/go.mod @@ -3,20 +3,20 @@ module moul.io/berty-library-test go 1.15 require ( - berty.tech/berty/v2 v2.148.0 + berty.tech/berty/v2 v2.469.0 github.com/gogo/protobuf v1.3.1 - github.com/mdp/qrterminal/v3 v3.0.0 - github.com/tailscale/depaware v0.0.0-20200914232109-e09ee10c1824 - go.uber.org/goleak v1.1.10 - google.golang.org/grpc v1.30.0 - moul.io/u v1.10.0 + github.com/mdp/qrterminal/v3 v3.1.1 + github.com/tailscale/depaware 720c4b409502 + go.uber.org/goleak v1.2.1 + google.golang.org/grpc v1.57.0 + moul.io/u v1.27.0 ) replace ( bazil.org/fuse => bazil.org/fuse v0.0.0-20200117225306-7b5117fecadc // specific version for iOS building - github.com/agl/ed25519 => github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // latest commit before the author shutdown the repo; see https://github.com/golang/go/issues/20504 - github.com/ipld/go-ipld-prime => github.com/ipld/go-ipld-prime v0.0.2-0.20191108012745-28a82f04c785 // specific version needed indirectly - github.com/ipld/go-ipld-prime-proto => github.com/ipld/go-ipld-prime-proto v0.0.0-20191113031812-e32bd156a1e5 // specific version needed indirectly - github.com/libp2p/go-libp2p-kbucket => github.com/libp2p/go-libp2p-kbucket v0.4.2 // specific version needed indirectly - github.com/lucas-clemente/quic-go => github.com/lucas-clemente/quic-go v0.18.0 // required by go1.15 + github.com/agl/ed25519 => github.com/agl/ed25519 fd4d107ace12 // latest commit before the author shutdown the repo; see https://github.com/golang/go/issues/20504 + github.com/ipld/go-ipld-prime => github.com/ipld/go-ipld-prime v0.20.0 // specific version needed indirectly + github.com/ipld/go-ipld-prime-proto => github.com/ipld/go-ipld-prime-proto v0.1.2 // specific version needed indirectly + github.com/libp2p/go-libp2p-kbucket => github.com/libp2p/go-libp2p-kbucket v0.6.3 // specific version needed indirectly + github.com/lucas-clemente/quic-go => github.com/lucas-clemente/quic-go v0.37.3 // required by go1.15 )