File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2020 - name : Set up Go
2121 uses : actions/setup-go@v2
2222 with :
23- go-version : 1.23
23+ go-version : 1.25
2424
2525 - name : Build
2626 run : go build ./...
Original file line number Diff line number Diff line change 1- FROM golang:1.23 AS build
1+ FROM golang:1.25 AS build
22WORKDIR /go/src/github.com/zricethezav/gitleaks
33COPY . .
44RUN VERSION=$(git describe --tags --abbrev=0) && \
55CGO_ENABLED=0 go build -o bin/gitleaks -ldflags "-X=github.com/zricethezav/gitleaks/v8/version.Version=${VERSION}"
66
7- FROM alpine:3.19
7+ FROM alpine:3.22
88RUN apk add --no-cache bash git openssh-client
99COPY --from=build /go/src/github.com/zricethezav/gitleaks/bin/* /usr/bin/
1010
Original file line number Diff line number Diff line change 11module github.com/zricethezav/gitleaks/v8
22
3- go 1.23.8
3+ go 1.25.4
44
55require (
66 github.com/BobuSumisu/aho-corasick v1.0.3
You can’t perform that action at this time.
0 commit comments