File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ ARG GOMODJAIL_VERSION=v0.1.2@0a86b34442a491fa8f5e4565e9c846fce310239c
47
47
ARG GO_VERSION=1.24
48
48
ARG UBUNTU_VERSION=24.04
49
49
ARG CONTAINERIZED_SYSTEMD_VERSION=v0.1.1
50
- ARG GOTESTSUM_VERSION=v1.12.2
50
+ ARG GOTESTSUM_VERSION=0d9599e513d70e5792bb9334869f82f6e8b53d4d
51
51
ARG NYDUS_VERSION=v2.3.1
52
52
ARG SOCI_SNAPSHOTTER_VERSION=0.9.0
53
53
ARG KUBO_VERSION=v0.34.1
Original file line number Diff line number Diff line change @@ -218,12 +218,14 @@ install-dev-tools:
218
218
# git-validation: main (2025-02-25)
219
219
# ltag: main (2025-03-04)
220
220
# go-licenses: v2.0.0-alpha.1 (2024-06-27)
221
+ # stubbing go-licenses with dependency upgrade due to non-compatibility with golang 1.25rc1
222
+ # Issue: https://github.com/google/go-licenses/issues/312
221
223
@cd $(MAKEFILE_DIR ) \
224
+ && go install github.com/Shubhranshu153/go-licenses/v2@f8c503d1357dffb6c97ed3b94e912ab294dde24a \
222
225
&& go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@2b224c2cf4c9f261c22a16af7f8ca6408467f338 \
223
226
&& go install github.com/vbatts/git-validation@7b60e35b055dd2eab5844202ffffad51d9c93922 \
224
227
&& go install github.com/containerd/ltag@66e6a514664ee2d11a470735519fa22b1a9eaabd \
225
- && go install github.com/google/go-licenses/v2@d01822334fba5896920a060f762ea7ecdbd086e8 \
226
- && go install gotest.tools/gotestsum@ac6dad9c7d87b969004f7749d1942938526c9716
228
+ && go install gotest.tools/gotestsum@0d9599e513d70e5792bb9334869f82f6e8b53d4d
227
229
@echo " Remember to add \$ $HOME /go/bin to your path"
228
230
$(call footer, $@ )
229
231
Original file line number Diff line number Diff line change @@ -28,7 +28,9 @@ readonly root
28
28
# "Blacklisting" here means that any dependency which name is blacklisted will be left untouched, at the version
29
29
# currently pinned in the Dockerfile.
30
30
# This is convenient so that currently broken alpha/beta/RC can be held back temporarily to keep the build green
31
- blacklist=()
31
+ # TODO: Blacklisting gotestsum until a new version compatible with golang v1.25rc1 is released
32
+ # Issue: https://github.com/google/go-licenses/issues/312
33
+ blacklist=(gotestsum)
32
34
33
35
# List all the repositories we depend on to build and run integration tests
34
36
dependencies=(
Original file line number Diff line number Diff line change @@ -168,11 +168,13 @@ install-dev-tools:
168
168
# git-validation: main (2025-02-25)
169
169
# ltag: main (2025-03-04)
170
170
# go-licenses: v2.0.0-alpha.1 (2024-06-27)
171
+ # stubbing go-licenses with dependency upgrade due to non-compatibility with golang 1.25rc1
172
+ # Issue: https://github.com/google/go-licenses/issues/312
171
173
@cd $(MAKEFILE_DIR ) \
172
174
&& go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@2b224c2cf4c9f261c22a16af7f8ca6408467f338 \
173
175
&& go install github.com/vbatts/git-validation@7b60e35b055dd2eab5844202ffffad51d9c93922 \
174
176
&& go install github.com/containerd/ltag@66e6a514664ee2d11a470735519fa22b1a9eaabd \
175
- && go install github.com/google /go-licenses/v2@d01822334fba5896920a060f762ea7ecdbd086e8
177
+ && go install github.com/Shubhranshu153 /go-licenses/v2@f8c503d1357dffb6c97ed3b94e912ab294dde24a
176
178
@echo " Remember to add \$ $HOME /go/bin to your path"
177
179
$(call footer, $@ )
178
180
You can’t perform that action at this time.
0 commit comments