diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 54c40d8..197c862 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -13,23 +13,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.19.3] + go-version: [1.23] steps: - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 - - name: golangci-lint - uses: golangci/golangci-lint-action@v3 - with: - # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: v1.50.1 - - # Optional: working directory, useful for monorepos - # working-directory: somedir - - # Optional: golangci-lint command line arguments. - #args: ./ ./cmd/... ./testpb/... - - # Optional: show only new issues if it's a pull request. The default value is `false`. - # only-new-issues: true + - uses: actions/checkout@v4 + - run: go test ./...