"Oscar Dominguez via GitGitGadget" [off-list ref] writes:
quoted hunk
From: Oscar Dominguez <redacted>
to prevent issue tracked in https://github.com/actions/checkout/issues/560
Signed-off-by: Oscar Dominguez <redacted>
---
.github/workflows/main.yml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 8dc9d938159..4eb5042f0d6 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -281,17 +281,20 @@ jobs:
...
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@${{matrix.vector.checkout_version}}
- run: ci/install-docker-dependencies.sh
- run: ci/run-build-and-tests.sh
- name: print test failures
I think the breakage we see in
https://github.com/git/git/actions/runs/3222517697
is due to this change.