From 6c57d85ecbf6f2366e6e22ec8d6ab72e9beb17fd Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Mon, 31 Mar 2025 10:14:47 -0600 Subject: [PATCH] github-ci: use git cli command for netmap instead of action This action hits API limits often, however our other uses of git clone do not seem to, so try use git clone here instead of the github action. --- .github/workflows/builds.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 208d89908a..c2a3380ec3 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -2216,11 +2216,7 @@ jobs: - name: Checkout Netmap repository if: steps.netmap-cache.outputs.cache-hit != 'true' - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - with: - repository: luigirizzo/netmap - # gets cloned to $GITHUB_WORKSPACE/netmap/ - path: netmap/ + run: git clone --depth 1 https://github.com/luigirizzo/netmap - name: Save Netmap Cache if: steps.netmap-cache.outputs.cache-hit != 'true'