File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,11 @@ COPY . .
1010RUN echo "Building govulncheckx binary for $GOOS/$GOARCH"
1111RUN GOOS=$GOOS GOARCH=$GOARCH go build -v -o govulncheckx main.go
1212
13- FROM golang:1.23
13+ FROM golang:1.24
1414# using a fresh golang image without the `WORKDIR` from the builder stage
1515# see https://docs.github.com/en/actions/reference/workflows-and-actions/dockerfile-support#workdir
16+ # using golang 1.24 but the entrypoint will trigger an install of the actual go version,
17+ # even if it is 1.23
1618
1719# copy the binary from the builder stage
1820COPY --from=builder /usr/src/app/govulncheckx /usr/local/bin/govulncheckx
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ inputs:
1515
1616runs :
1717 using : ' docker'
18- image : ' docker://quay.io/codeready-toolchain/govulncheck-action:entrypoint-test '
18+ image : ' docker://quay.io/codeready-toolchain/govulncheck-action:latest '
1919 args :
2020 - --path=${{ inputs.path }}
2121 - --config=${{ inputs.config }}
You can’t perform that action at this time.
0 commit comments