From 8e490a5fada18283c44f3c0f70e776055c5e2b2b Mon Sep 17 00:00:00 2001 From: Kris Zyp Date: Thu, 1 Aug 2024 21:08:45 -0600 Subject: [PATCH] Try workaround https://github.com/actions/checkout/issues/1809 --- .github/workflows/prebuild.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/prebuild.yml b/.github/workflows/prebuild.yml index 1e9c8f564..b90d27781 100644 --- a/.github/workflows/prebuild.yml +++ b/.github/workflows/prebuild.yml @@ -64,6 +64,10 @@ jobs: runs-on: ubuntu-20.04 container: quay.io/pypa/manylinux2014_x86_64 steps: + - run: | + cd $RUNNER_HOME/actions-runner/externals + mv node20 node20.bak + ln -s node16 node20 - uses: actions/checkout@v4 - name: Setup node uses: actions/setup-node@v3