From: Jason Ish Date: Mon, 31 Mar 2025 16:14:47 +0000 (-0600) Subject: github-ci: use git cli command for netmap instead of action X-Git-Tag: suricata-8.0.0-beta1~162 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12888%2Fhead;p=thirdparty%2Fsuricata.git 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. --- 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'