From 272e28abc68ef068e4dde44e8a4f7eca26c42efb Mon Sep 17 00:00:00 2001 From: Asher Date: Wed, 18 Dec 2024 13:42:08 -0900 Subject: [PATCH] Set GITHUB_TOKEN on macOS job Trying to see if this will help with the 403s trying to download ripgrep. --- .github/workflows/release.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8eb4ae995645..1a09c6dda41b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -196,6 +196,9 @@ jobs: runs-on: macos-latest timeout-minutes: 15 needs: npm-version + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: - name: Checkout repo uses: actions/checkout@v4