Skip to content

Commit 61c4d64

Browse files
committed
set GITHUB_TOKEN also for direct upstream just/uv installation to avoid rate limits / 403's
1 parent b5c6850 commit 61c4d64

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/wheels.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ jobs:
5757
# we use the standard upstream installation on non-broken platforms.
5858
- name: Install Just (Linux/macOS)
5959
if: runner.os != 'Windows'
60+
env:
61+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6062
run: |
6163
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to ~/bin
6264
echo "$HOME/bin" >> $GITHUB_PATH
@@ -72,6 +74,8 @@ jobs:
7274
# we use the standard upstream installation on non-broken platforms.
7375
- name: Install uv (Linux/macOS)
7476
if: runner.os != 'Windows'
77+
env:
78+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7579
run: |
7680
curl -LsSf https://astral.sh/uv/install.sh | sh
7781
source $HOME/.cargo/env

0 commit comments

Comments
 (0)