diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index f658121f6e398..407094810422a 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -14,9 +14,9 @@ jobs: uses: actions/setup-go@v5 with: go-version: "1.21" - - name: golangci-lint - uses: golangci/golangci-lint-action@v6 - with: - version: v1.60 + - name: Install golangci-lint + run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.61.0 + - name: lint + run: make lint-go - name: test opnode run: cd op-node && make test