diff --git a/.cloudbees/workflows/workflow.yml b/.cloudbees/workflows/workflow.yml index 9917327..253f9f5 100644 --- a/.cloudbees/workflows/workflow.yml +++ b/.cloudbees/workflows/workflow.yml @@ -18,7 +18,7 @@ jobs: uses: https://github.com/cloudbees-io/checkout@v1 - name: Self Test - uses: docker://golang:1.24.4 + uses: docker://golang:1.24.6 run: | make verify @@ -113,7 +113,7 @@ jobs: - uses: ./.cloudbees/testing with: repositories: calculi-corp/* - - uses: docker://golang:1.24.4 + - uses: docker://golang:1.24.6 run: | mkdir test cd test diff --git a/Dockerfile b/Dockerfile index d975e64..fc441e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.20.6 AS certs RUN apk add -U --no-cache ca-certificates -FROM golang:1.24.4-alpine3.22 AS build +FROM golang:1.24.6-alpine3.22 AS build WORKDIR /work @@ -16,7 +16,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -a -tags netgo -ldflags '-w -extldflags "- ## Add a secondary target that allows testing locally under similar conditions without modifying your local gitconfig -FROM golang:1.24.4 AS testing +FROM golang:1.24.6 AS testing COPY --from=build /build-out/* /usr/local/bin/ diff --git a/go.mod b/go.mod index 68d21e9..b40c05d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/cloudbees-io/configure-git-global-credentials -go 1.24.4 +go 1.24.6 require ( github.com/go-git/go-git/v5 v5.16.2