Skip to content

Commit 9980b0e

Browse files
Rename repo to depot/setup-action
1 parent 8b37f83 commit 9980b0e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `setup-depot` GitHub Action
1+
# Depot `setup-action` GitHub Action
22

33
Provides the [Depot CLI](https://github.com/depot/cli) in the GitHub Actions environment, allowing access to the `depot` binary in subsequent workflow steps.
44

@@ -10,7 +10,7 @@ Download and install the latest version of the CLI:
1010
jobs:
1111
job-name:
1212
steps:
13-
- uses: depot/setup-depot@v1
13+
- uses: depot/setup-action@v1
1414
- run: depot ...
1515
```
1616
@@ -20,7 +20,7 @@ Download and install a specific version of the CLI:
2020
jobs:
2121
job-name:
2222
steps:
23-
- uses: depot/setup-depot@v1
23+
- uses: depot/setup-action@v1
2424
with:
2525
version: 1.2.3
2626
- run: depot ...
@@ -38,7 +38,7 @@ The `depot` CLI can read a Depot API token from the `DEPOT_TOKEN` environment va
3838
jobs:
3939
job-name:
4040
steps:
41-
- uses: depot/setup-depot@v1
41+
- uses: depot/setup-action@v1
4242
- run: depot build ...
4343
env:
4444
DEPOT_TOKEN: ${{ secrets.DEPOT_TOKEN }}

Diff for: dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5439,7 +5439,7 @@ const core = __importStar(__nccwpck_require__(31));
54395439
const http = __importStar(__nccwpck_require__(875));
54405440
const toolCache = __importStar(__nccwpck_require__(723));
54415441
const path = __importStar(__nccwpck_require__(17));
5442-
const client = new http.HttpClient('setup-depot');
5442+
const client = new http.HttpClient('depot-setup-action');
54435443
async function run() {
54445444
// Get user-specified version to install (defaults to "latest")
54455445
const version = core.getInput('version');

Diff for: src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as path from 'path'
55

66
type ApiResponse = {ok: true; url: string} | {ok: false; error: string}
77

8-
const client = new http.HttpClient('setup-depot')
8+
const client = new http.HttpClient('depot-setup-action')
99

1010
async function run() {
1111
// Get user-specified version to install (defaults to "latest")

0 commit comments

Comments
 (0)