diff --git a/.circleci/config.yml b/.circleci/config.yml index 6c6f6e439..9bb9886b5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 orbs: go: circleci/go@0.2.0 - prometheus: prometheus/prometheus@0.15.0 + prometheus: prometheus/prometheus@0.16.0 jobs: test: parameters: diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 99a9ab486..8211b9a18 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -9,13 +9,6 @@ on: - ".github/workflows/golangci-lint.yml" - ".golangci.yml" pull_request: - paths: - - "go.sum" - - "go.mod" - - "**.go" - - "scripts/errcheck_excludes.txt" - - ".github/workflows/golangci-lint.yml" - - ".golangci.yml" jobs: golangci: @@ -24,8 +17,11 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - + - name: install Go + uses: actions/setup-go@v2 + with: + go-version: 1.17.x - name: Lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v3.1.0 with: version: v1.44.2