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 govulncheck-action/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ ENV GOTOOLCHAIN=auto
RUN echo "Building govulncheckx binary for $GOOS/$GOARCH"
RUN GOOS=$GOOS GOARCH=$GOARCH go build -v -o govulncheckx main.go

FROM golang:1.23.0
FROM golang:1.24.0
# using a fresh golang image without the `WORKDIR` from the builder stage
# see https://docs.github.com/en/actions/reference/workflows-and-actions/dockerfile-support#workdir
# using golang 1.23.0 since most of our projects are still using it (and toolchain will not downgrade the version of go)
# using golang 1.24.0 since most of our projects are still using it (and toolchain will not downgrade the version of go)

# copy the binary from the builder stage
COPY --from=builder /usr/src/app/govulncheckx /usr/local/bin/govulncheckx
Expand Down
6 changes: 3 additions & 3 deletions prepare-tools-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ inputs:
operator-sdk-version:
description: Version of operator-sdk binary
required: false
default: v1.40.0
default: v1.42.0
operator-registry:
description: Version of operator registry
required: false
# see https://github.com/operator-framework/operator-sdk/blob/v1.40.0/go.mod#L20
default: v1.55.0
# see https://github.com/operator-framework/operator-sdk/blob/v1.42.0/go.mod#L20
default: v1.59.0
runs:
using: "composite"
steps:
Expand Down
Loading