Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .cloudbees/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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/

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down