From f7c5f1639113c5fc91e63e855c2896a34fe8fdd0 Mon Sep 17 00:00:00 2001 From: Adam Fisk Date: Wed, 20 Nov 2024 14:04:26 -0700 Subject: [PATCH] see if we can build without a private token --- .github/workflows/go.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 93766aae7..82996ff13 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,7 +12,7 @@ jobs: - name: Install libpcap run: sudo apt-get install libpcap-dev - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version-file: "go.mod" - name: Set up gotestfmt @@ -20,9 +20,6 @@ jobs: with: # Optional: pass GITHUB_TOKEN to avoid rate limiting. token: ${{ secrets.GITHUB_TOKEN }} - - name: Granting private modules access - run: | - git config --global url."https://${{ secrets.CI_PRIVATE_REPOS_GH_TOKEN }}:x-oauth-basic@github.com/".insteadOf "https://github.com/" - name: Run tests run: | set -euo pipefail