diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8930224..826f749 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,15 +5,14 @@ on: - '*' jobs: - build: runs-on: ubuntu-latest steps: - - name: Set up Go 1.16 - uses: actions/setup-go@v2 + - name: Set up Go 1.20 + uses: actions/setup-go@v4 with: - go-version: 1.16 + go-version: 1.20 id: go - name: Check out code into the Go module directory @@ -23,9 +22,10 @@ jobs: run: go mod tidy && git diff --no-patch --exit-code - name: golangci-lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v3 with: - version: v1.46.0 + version: v1.54 + - name: go test run: go test ./... \ No newline at end of file