From 4f318eae227af488db639148dfca2cc911b78c75 Mon Sep 17 00:00:00 2001 From: Noboru Saito Date: Sun, 15 Oct 2023 22:10:51 +0900 Subject: [PATCH] version up --- .github/workflows/test.yml | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0682df8..099f222 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,7 +3,7 @@ jobs: runs-on: ${{ matrix.platform }} steps: - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go if: success() uses: actions/setup-go@v4 @@ -47,7 +47,7 @@ jobs: - 5432:5432 steps: - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go uses: actions/setup-go@v4 if: success() diff --git a/Makefile b/Makefile index 16feca0..cf96bf2 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ ifeq ($(strip $(VERSION)),) else LDFLAGS="-X github.com/noborus/trdsql.Version=$(VERSION)" endif -GOVERSION="1.19.x" +GOVERSION="1.21.x" BUILDFLAG=-tags $(TAGS) -ldflags=$(LDFLAGS) GOBUILD=$(GOCMD) build $(BUILDFLAG) GOTEST=$(GOCMD) test -tags $(TAGS) ./...