Skip to content

Commit cf53256

Browse files
authored
Update default cli version (#21)
1 parent 535251e commit cf53256

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [macos-latest, windows-latest, ubuntu-latest]
25-
version: [0.32.1, 0.34.2]
25+
version: [1.0.0]
2626
steps:
2727
- uses: actions/checkout@v3
2828
- uses: ./

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ A specific version of the `supabase` CLI can be installed:
2424
steps:
2525
- uses: supabase/setup-cli@v1
2626
with:
27-
version: 0.34.2
27+
version: 1.0.0
2828
```
2929

3030
Run `supabase start` to execute all migrations on a fresh database:
@@ -33,7 +33,7 @@ Run `supabase start` to execute all migrations on a fresh database:
3333
steps:
3434
- uses: supabase/setup-cli@v1
3535
with:
36-
version: 0.34.2
36+
version: 1.0.0
3737
- run: supabase init
3838
- run: supabase start
3939
```
@@ -44,7 +44,7 @@ Since Supabase CLI relies on Docker Engine API, additional setup may be required
4444

4545
The actions supports the following inputs:
4646

47-
- `version`: The version of `supabase` to install, defaulting to `0.34.2`
47+
- `version`: The version of `supabase` to install, defaulting to `1.0.0`
4848

4949
## Advanced Usage
5050

@@ -129,7 +129,7 @@ You can now validate the action by referencing `./` in a workflow in your repo (
129129
```yaml
130130
uses: ./
131131
with:
132-
version: 0.34.2
132+
version: 1.0.0
133133
```
134134

135135
See the [actions tab](https://github.com/actions/typescript-action/actions) for runs of this action! :rocket:

__tests__/main.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ test('gets download url to binary', async () => {
1515
// shows how the runner will run a javascript action with env / stdout protocol
1616
test('test runs', () => {
1717
process.env['RUNNER_TEMP'] = os.tmpdir()
18-
process.env['INPUT_VERSION'] = '0.34.2'
18+
process.env['INPUT_VERSION'] = '1.0.0'
1919
const np = process.execPath
2020
const ip = path.join(__dirname, '..', 'lib', 'main.js')
2121
const options: cp.ExecFileSyncOptions = {

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
version:
66
description: Version of Supabase CLI to install
77
required: false
8-
default: 0.34.2
8+
default: 1.0.0
99
runs:
1010
using: node16
1111
main: dist/index.js

0 commit comments

Comments
 (0)