From c264c196a2cc94451ca7dfb0738ad801334bba07 Mon Sep 17 00:00:00 2001 From: Alexey Semenyuk Date: Sun, 21 Jul 2024 01:29:42 +0500 Subject: [PATCH] Update mockery version Signed-off-by: alexey semenyuk --- .github/workflows/go.yml | 2 +- Makefile | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d437fa31..b466cdf2 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -10,7 +10,7 @@ on: jobs: build: runs-on: ubuntu-latest - container: golang:1.21-bullseye + container: golang:1.22-bullseye defaults: run: shell: bash # needed for codecov diff --git a/Makefile b/Makefile index d0adc970..40bbc938 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ test: deps lint coverage.html: $(VGO) tool cover -html=coverage.txt coverage: test coverage.html -lint: +lint: $(VGO) install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.55.2 GOGC=20 $(LINT) run -v --timeout 5m diff --git a/go.mod b/go.mod index cfb6f7e8..c76fc453 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hyperledger/firefly-transaction-manager -go 1.21 +go 1.22.2 require ( github.com/DATA-DOG/go-sqlmock v1.5.2