diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 2d2ad814..dbd889df 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -6,12 +6,15 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/setup-go@v3 + with: + go-version: '1.17' + - uses: actions/checkout@v3 - name: golangci-lint - uses: golangci/golangci-lint-action@v2 + 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.49 + # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version + version: v1.29 # Optional: working directory, useful for monorepos # working-directory: somedir diff --git a/tests/merge.bats b/tests/merge.bats index 0b3e4ccf..dc187c3c 100755 --- a/tests/merge.bats +++ b/tests/merge.bats @@ -26,6 +26,7 @@ setup_file() { } teardown_file() { + rm *_profile_listen_addr kill -9 $GOC_PID }