diff --git a/README.md b/README.md index 1cd4b4c..aa87ab6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# `setup-depot` GitHub Action +# Depot `setup-action` GitHub Action Provides the [Depot CLI](https://github.com/depot/cli) in the GitHub Actions environment, allowing access to the `depot` binary in subsequent workflow steps. @@ -10,7 +10,7 @@ Download and install the latest version of the CLI: jobs: job-name: steps: - - uses: depot/setup-depot@v1 + - uses: depot/setup-action@v1 - run: depot ... ``` @@ -20,7 +20,7 @@ Download and install a specific version of the CLI: jobs: job-name: steps: - - uses: depot/setup-depot@v1 + - uses: depot/setup-action@v1 with: version: 1.2.3 - run: depot ... @@ -38,7 +38,7 @@ The `depot` CLI can read a Depot API token from the `DEPOT_TOKEN` environment va jobs: job-name: steps: - - uses: depot/setup-depot@v1 + - uses: depot/setup-action@v1 - run: depot build ... env: DEPOT_TOKEN: ${{ secrets.DEPOT_TOKEN }} diff --git a/dist/index.js b/dist/index.js index 8e72ddf..3180d77 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5439,7 +5439,7 @@ const core = __importStar(__nccwpck_require__(31)); const http = __importStar(__nccwpck_require__(875)); const toolCache = __importStar(__nccwpck_require__(723)); const path = __importStar(__nccwpck_require__(17)); -const client = new http.HttpClient('setup-depot'); +const client = new http.HttpClient('depot-setup-action'); async function run() { // Get user-specified version to install (defaults to "latest") const version = core.getInput('version'); diff --git a/src/index.ts b/src/index.ts index de2eeb6..79a8372 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,7 +5,7 @@ import * as path from 'path' type ApiResponse = {ok: true; url: string} | {ok: false; error: string} -const client = new http.HttpClient('setup-depot') +const client = new http.HttpClient('depot-setup-action') async function run() { // Get user-specified version to install (defaults to "latest")