Skip to content

Commit

Permalink
Enforce go-licenses v1.0.0
Browse files Browse the repository at this point in the history
This should fixes issues we are getting with `go.mod` files containing
the `toolchain` directive.

See google/go-licenses#128.

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
  • Loading branch information
vdemeester committed Jun 18, 2024
1 parent d8417ca commit 1d1ebb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/tektoncd/plumbing

go 1.19
go 1.22

require (
github.com/google/go-containerregistry v0.19.2
github.com/google/go-licenses v1.6.0
github.com/google/go-licenses v1.0.0
)

require (
Expand Down
2 changes: 1 addition & 1 deletion tekton/images/test-runner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ RUN tar -C /usr/local/bin -xzf ko_${KO_VERSION}.tar.gz

# Extra tools through go install
ARG KIND_VERSION="v0.23.0"
RUN GO111MODULE="on" go install github.com/google/go-licenses@latest && \
RUN GO111MODULE="on" go install github.com/google/go-licenses@v1.0.0 && \
GO111MODULE="on" go install github.com/jstemmer/go-junit-report@latest && \
GO111MODULE="on" go install github.com/raviqqe/liche@latest && \
GO111MODULE="on" go install sigs.k8s.io/kind@${KIND_VERSION}
Expand Down

0 comments on commit 1d1ebb7

Please sign in to comment.