From 4d91cc49eeb158ff48cdbc99916b52f6b4ec429e Mon Sep 17 00:00:00 2001 From: lds Date: Tue, 24 Oct 2023 08:17:09 +0000 Subject: [PATCH] Update githubaction with go 1.21 --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 21493f1..06c7f45 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,8 +15,8 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.21 - name: Go Test working-directory: src - run: go test --short --timeout 5s ./... + run: go mod tidy && go test --short --timeout 5s ./...