File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 8181
8282 - name : package cleanup
8383 uses : dataaxiom/ghcr-cleanup-action@v1
84+ continue-on-error : true # action doesn't fail when this step fails
8485 if : ${{ github.actor != 'dependabot' }}
8586 with :
8687 owner : nuts-foundation
9192
9293 - name : package cleanup dependabot
9394 uses : dataaxiom/ghcr-cleanup-action@v1
95+ continue-on-error : true # action doesn't fail when this step fails
9496 if : ${{ github.actor == 'dependabot' }}
9597 with :
9698 owner : nuts-foundation
Original file line number Diff line number Diff line change 11# golang alpine
2- FROM golang:1.23.2 -alpine AS builder
2+ FROM golang:1.23.4 -alpine AS builder
33
44ARG TARGETARCH
55ARG TARGETOS
@@ -28,12 +28,11 @@ COPY . .
2828RUN GOOS=$TARGETOS GOARCH=$TARGETARCH go build -ldflags="-w -s -X 'github.com/nuts-foundation/nuts-node/core.GitCommit=${GIT_COMMIT}' -X 'github.com/nuts-foundation/nuts-node/core.GitBranch=${GIT_BRANCH}' -X 'github.com/nuts-foundation/nuts-node/core.GitVersion=${GIT_VERSION}'" -o /opt/nuts/nuts
2929
3030# alpine
31- FROM alpine:3.20.3
31+ FROM alpine:3.21.2
3232RUN apk update \
3333 && apk add --no-cache \
3434 tzdata \
35- curl \
36- && update-ca-certificates
35+ curl
3736COPY --from=builder /opt/nuts/nuts /usr/bin/nuts
3837
3938HEALTHCHECK --start-period=30s --timeout=5s --interval=10s \
Original file line number Diff line number Diff line change 11module github.com/nuts-foundation/nuts-node
22
3- go 1.23
3+ // This is the minimal version, the actual go version is determined by the images in the Dockerfile
4+ // This version is used in automated tests such as the 'Scheduled govulncheck' action
5+ go 1.23.4
46
57require (
68 github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0
You can’t perform that action at this time.
0 commit comments