From 89ee2c488f7415f48e290897e79e86e707b8cbd1 Mon Sep 17 00:00:00 2001 From: Jacob Bandes-Storch Date: Thu, 21 Sep 2023 17:57:13 -0700 Subject: [PATCH] add GITHUB_TOKEN to avoid rate limiting --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7fea42..d4010b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,8 @@ jobs: rm Linux.flatc.binary.clang++-12.zip sudo mv flatc /usr/local/bin - uses: arduino/setup-protoc@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} - uses: actions/setup-node@v3 with: node-version: 16.x @@ -69,6 +71,8 @@ jobs: steps: - uses: actions/checkout@v3 - uses: arduino/setup-protoc@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Install Flatbuffer compiler run: | curl -LO https://github.com/google/flatbuffers/releases/download/v23.1.21/Linux.flatc.binary.clang++-12.zip