diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6d7d7ec3b..3423a7236 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,7 +7,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: '>=1.17.0' + go-version: ">=1.17.0" - uses: actions/checkout@v2 - name: golangci-lint uses: golangci/golangci-lint-action@v3 @@ -20,7 +20,9 @@ jobs: container: docker.io/library/golang:latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 + - name: Add safe directory + run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Go Fmt run: make fmt - name: Go Tidy