Skip to content

Commit 43851a3

Browse files
authored
Merge pull request #747 from kishen-v/bump-devtools
Bump test utilities version to latest available versions
2 parents e02085d + 260a6ad commit 43851a3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ bin/mockgen: | bin
9292

9393
bin/golangci-lint: | bin
9494
echo "Installing golangci-lint..."
95-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.59.1
95+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.61.0
9696

9797
bin/govulncheck: | bin
9898
echo "Installing govulncheck..."

hack/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function produce_junit_xmlreport {
3939

4040
if ! command -v gotestsum >/dev/null 2>&1; then
4141
echo "gotestsum not found; installing now"
42-
go install gotest.tools/gotestsum@v1.8.2
42+
go install gotest.tools/gotestsum@v1.12.0
4343
fi
4444
export PATH=$GOBIN:$GOPATH/bin:$PATH
4545
gotestsum --junitfile "${junit_xml_filename}" --raw-command cat "${junit_filename_prefix}"*.stdout

hack/update-gomod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
1817
set -euo pipefail
1918
set -x
2019

@@ -35,3 +34,4 @@ for MOD in "${MODS[@]}"; do
3534
sed -n 's|.*"Version": "\(.*\)".*|\1|p'
3635
)
3736
go mod edit "-replace=${MOD}=${MOD}@${V}"
37+
done

0 commit comments

Comments
 (0)