From a7397d36992c2b7299b3c2fab3ca6f7a06f96573 Mon Sep 17 00:00:00 2001 From: Alejandro Pedraza Date: Fri, 1 Dec 2023 09:45:09 -0500 Subject: [PATCH] Add missing git config --- .github/workflows/go.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1deb3f19..0f523bc9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -17,6 +17,7 @@ jobs: container: ghcr.io/linkerd/dev:v42-go steps: - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac + - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - run: just go-lint --verbose --timeout=10m fmt: @@ -24,6 +25,7 @@ jobs: container: ghcr.io/linkerd/dev:v42-go steps: - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac + - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - run: just go-fmt-check unit-test: @@ -31,5 +33,6 @@ jobs: container: ghcr.io/linkerd/dev:v42-go steps: - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac + - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 - run: just proxy-init-test-unit