Skip to content

Commit

Permalink
(ci): use GITHUB_TOKEN to avoid API limit
Browse files Browse the repository at this point in the history
  • Loading branch information
wpumacay committed Oct 16, 2023
1 parent 62a39ce commit ee0884b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci-linux.yml
Expand Up @@ -23,7 +23,9 @@ jobs:
- uses: actions/checkout@v3

- name: Update CMake
uses: jwlawson/actions-setup-cmake@v1.10
uses: jwlawson/actions-setup-cmake@v1.14.1
with:
github-api-token: ${{ secrets.GITHUB_TOKEN }}

- if: ${{ matrix.compiler == 'gcc' }}
name: Configure GNU/GCC as C/C++ compiler
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci-macos.yml
Expand Up @@ -27,7 +27,9 @@ jobs:
python-version: '3.9'

- name: Update CMake
uses: jwlawson/actions-setup-cmake@v1.10
uses: jwlawson/actions-setup-cmake@v1.14.1
with:
github-api-token: ${{ secrets.GITHUB_TOKEN }}

- name: Configure CMake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=${{matrix.build-type}}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci-windows.yml
Expand Up @@ -22,7 +22,9 @@ jobs:
- uses: actions/checkout@v3

- name: Update CMake
uses: jwlawson/actions-setup-cmake@v1.10
uses: jwlawson/actions-setup-cmake@v1.14.1
with:
github-api-token: ${{ secrets.GITHUB_TOKEN }}

- name: Configure CMake
env:
Expand Down

0 comments on commit ee0884b

Please sign in to comment.