-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes compatibility with Go 1.23
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 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 |
---|---|---|
|
@@ -31,7 +31,7 @@ jobs: | |
run: | | ||
go install github.com/golang/protobuf/[email protected] | ||
go install github.com/gogo/protobuf/[email protected] | ||
go install github.com/fatih/faillint@v1.11.0 | ||
go install github.com/fatih/faillint@v1.14.0 | ||
- name: Test | ||
run: make BUILD_IN_CONTAINER=false test | ||
|
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ RUN apk add --no-cache docker-cli | |
# github.com/fatih/[email protected] requires golang.org/x/[email protected] | ||
# (not golang.org/x/[email protected] from golang.org/x/tools/cmd/goyacc@58d531046acdc757f177387bc1725bfa79895d69) | ||
FROM docker.io/library/golang:1.23.2 as faillint | ||
RUN go install github.com/fatih/faillint@v1.11.0 | ||
RUN go install github.com/fatih/faillint@v1.14.0 | ||
|
||
FROM docker.io/library/golang:1.23.2-bookworm | ||
RUN apt-get update && \ | ||
|