From 158459f1d8adbb4ca5c6f93167287d0a7cc753bf Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Mon, 9 Jun 2025 09:39:17 -0700 Subject: [PATCH] fix(mise guide): Ensure `GITHUB_TOKEN` is provided to mise action Without this the GitHub Action will be severely rate limited when accessing api.github.com (which is how the action downloads the correct version of mise and it's underlying registry). --- docs/speakeasy-reference/cli/mise-toolkit.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/speakeasy-reference/cli/mise-toolkit.mdx b/docs/speakeasy-reference/cli/mise-toolkit.mdx index 4f237715..cf93c3cd 100644 --- a/docs/speakeasy-reference/cli/mise-toolkit.mdx +++ b/docs/speakeasy-reference/cli/mise-toolkit.mdx @@ -147,6 +147,8 @@ To use Speakeasy CLI with mise in CI/CD pipelines: # Example GitHub Actions workflow - name: Install mise uses: jdx/mise-action@v2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Install Speakeasy CLI run: mise use aqua:speakeasy-api/speakeasy