From 1ab35b8a87053f56fa0cb7f1d3bde3ee53278f1e Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Tue, 14 Feb 2023 10:25:03 +0900 Subject: [PATCH] use latest staticcheck (#40) * use latest staticcheck * use go 1.20 * use staticcheck github action 1.3.0 --- .github/workflows/go.yml | 8 ++++---- go.mod | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index a5b77ee..0f5cba9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.19 + - name: Set up Go 1.20 uses: actions/setup-go@v1 with: - go-version: 1.19 + go-version: 1.20 id: go - name: Check out code into the Go module directory @@ -23,6 +23,6 @@ jobs: GOBIN=$PWD/bin make lint - name: Staticcheck - uses: dominikh/staticcheck-action@v1.2.0 + uses: dominikh/staticcheck-action@v1.3.0 with: - version: "2022.1.1" + version: "2023.1" diff --git a/go.mod b/go.mod index 7e8d474..36e57b9 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/signalsciences/go-sigsci -go 1.19 +go 1.20