Skip to content

Commit 56fb558

Browse files
committed
fix: add GITHUB_TOKEN to CI workflow for authenticated action downloads
1 parent a55a87c commit 56fb558

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
name: Lint & Type Check
1212
runs-on: ubuntu-latest
1313

14+
env:
15+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
1417
steps:
1518
- name: Checkout code
1619
uses: actions/checkout@v4
@@ -46,6 +49,9 @@ jobs:
4649
runs-on: ubuntu-latest
4750
needs: lint-and-typecheck
4851

52+
env:
53+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54+
4955
steps:
5056
- name: Checkout code
5157
uses: actions/checkout@v4
@@ -79,6 +85,9 @@ jobs:
7985
name: Check Formatting
8086
runs-on: ubuntu-latest
8187

88+
env:
89+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
90+
8291
steps:
8392
- name: Checkout code
8493
uses: actions/checkout@v4

0 commit comments

Comments
 (0)