-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump golangci-lint to v1.63.4 to support go v1.23
Signed-off-by: Zespre Chang <[email protected]>
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,12 @@ ENV ARCH $DAPPER_HOST_ARCH | |
|
||
RUN zypper -n install tar gzip bash git docker less file curl wget | ||
|
||
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.57.1 | ||
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.63.4 | ||
|
||
# The docker version in dapper is too old to have buildx. Install it manually. | ||
RUN curl -sSfL https://github.com/docker/buildx/releases/download/v0.13.1/buildx-v0.13.1.linux-${ARCH} -o buildx-v0.13.1.linux-${ARCH} && \ | ||
chmod +x buildx-v0.13.1.linux-${ARCH} && \ | ||
mv buildx-v0.13.1.linux-${ARCH} /usr/local/bin/buildx | ||
chmod +x buildx-v0.13.1.linux-${ARCH} && \ | ||
mv buildx-v0.13.1.linux-${ARCH} /usr/local/bin/buildx | ||
|
||
## install controller-gen | ||
RUN go install sigs.k8s.io/controller-tools/cmd/[email protected] | ||
|