chore(workflows/test): use ACCESS_TOKEN

This commit is contained in:
xHyroM 2022-07-28 08:10:27 +02:00
parent f391a17228
commit c3404c3d6b
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ jobs:
uses: ./ uses: ./
with: with:
bun-version: ${{ matrix.bun-version }} bun-version: ${{ matrix.bun-version }}
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.ACCESS_TOKEN }}
custom-download-url: ${{ matrix.custom-download-url }} custom-download-url: ${{ matrix.custom-download-url }}
- name: Try bun - name: Try bun

View File

@ -47,5 +47,5 @@ Set up your GitHub Actions workflow with a specific version of Bun.
- uses: xhyrom/setup-bun@v0.1.6 - uses: xhyrom/setup-bun@v0.1.6
with: with:
custom-download-url: https://api.github.com/repos/oven-sh/bun/actions/artifacts/311939881/zip # must be github api custom-download-url: https://api.github.com/repos/oven-sh/bun/actions/artifacts/311939881/zip # must be github api
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.ACCESS_TOKEN }} # must have the actions scope to download artifacts (https://github.com/actions/upload-artifact/issues/51#issuecomment-622955923)
``` ```