mirror of
https://github.com/supabase/setup-cli.git
synced 2026-06-27 17:36:57 +00:00
## Summary
- Add an optional `github-token` input to authenticate the GitHub
release lookup used by `version: latest`.
- Pass the token through the composite action as
`SUPABASE_CLI_GITHUB_TOKEN` and use it as a bearer token for the
`/repos/supabase/cli/releases/latest` request.
- Update this repository's CI smoke test and README examples to pass
`${{ github.token }}` when testing or using `latest`.
## Root Cause
CI failed in `test (macos-latest, latest)` because the action resolved
`latest` through an unauthenticated GitHub REST API request and hit the
low unauthenticated rate limit. The dependency bump in #429 was not the
cause; the validate job passed and the failure happened inside the
release lookup path.
## Impact
Pinned versions continue to work without a token. For `version: latest`,
callers can now pass `${{ github.token }}` to avoid unauthenticated API
rate limiting while keeping the input optional for backward
compatibility.
## Validation
- `bun run ci`
36 lines
1.2 KiB
YAML
36 lines
1.2 KiB
YAML
name: Supabase CLI Action
|
|
description: Setup Supabase CLI, supabase, on GitHub Actions runners
|
|
author: Supabase
|
|
inputs:
|
|
version:
|
|
description: Version of Supabase CLI to install. If omitted, detect from the root lockfile and otherwise use latest.
|
|
required: false
|
|
github-token:
|
|
description: GitHub token used to resolve the latest Supabase CLI release without hitting unauthenticated API limits.
|
|
required: false
|
|
outputs:
|
|
version:
|
|
description: Version of installed Supabase CLI
|
|
value: ${{ steps.setup-cli.outputs.version }}
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Setup Bun
|
|
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
|
|
with:
|
|
bun-version-file: ${{ github.action_path }}/.bun-version
|
|
|
|
- name: Install Action Dependencies
|
|
shell: bash
|
|
working-directory: ${{ github.action_path }}
|
|
run: bun install --frozen-lockfile --production
|
|
|
|
- id: setup-cli
|
|
name: Setup Supabase CLI
|
|
shell: bash
|
|
working-directory: ${{ github.action_path }}
|
|
env:
|
|
INPUT_VERSION: ${{ inputs.version }}
|
|
SUPABASE_CLI_GITHUB_TOKEN: ${{ inputs.github-token }}
|
|
run: bun src/main.ts
|