From bbdd6417cc04c0246767d8722a9443a78e02cb37 Mon Sep 17 00:00:00 2001 From: Ichinose Shogo Date: Thu, 17 Mar 2022 19:15:36 +0900 Subject: [PATCH 1/2] add Go 1.18 to the build matrix --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 819cc4d6..4f674f63 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,7 @@ jobs: - "macos-latest" go: - "1" + - "1.18" - "1.17" - "1.16" fail-fast: false From 4f583aa04b4089e72ffc271383865d7eb0da88d3 Mon Sep 17 00:00:00 2001 From: Ichinose Shogo Date: Thu, 17 Mar 2022 19:22:14 +0900 Subject: [PATCH 2/2] use go install instead of go get --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ef07c8c5..4a8b5bb6 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ all: depend lint goagen .PHONY: depend depend: go mod download - go get github.com/onsi/ginkgo/ginkgo + go install github.com/onsi/ginkgo/ginkgo@latest .PHONY: test test: