diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5ab330f..3c03c74 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [macos-latest, windows-latest, ubuntu-latest] - version: [0.32.1, 0.34.2] + version: [1.0.0] steps: - uses: actions/checkout@v3 - uses: ./ diff --git a/README.md b/README.md index 299a6dc..82fa0c3 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ A specific version of the `supabase` CLI can be installed: steps: - uses: supabase/setup-cli@v1 with: - version: 0.34.2 + version: 1.0.0 ``` 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: steps: - uses: supabase/setup-cli@v1 with: - version: 0.34.2 + version: 1.0.0 - run: supabase init - run: supabase start ``` @@ -44,7 +44,7 @@ Since Supabase CLI relies on Docker Engine API, additional setup may be required The actions supports the following inputs: -- `version`: The version of `supabase` to install, defaulting to `0.34.2` +- `version`: The version of `supabase` to install, defaulting to `1.0.0` ## Advanced Usage @@ -129,7 +129,7 @@ You can now validate the action by referencing `./` in a workflow in your repo ( ```yaml uses: ./ with: - version: 0.34.2 + version: 1.0.0 ``` See the [actions tab](https://github.com/actions/typescript-action/actions) for runs of this action! :rocket: diff --git a/__tests__/main.test.ts b/__tests__/main.test.ts index 192a112..748fe2d 100644 --- a/__tests__/main.test.ts +++ b/__tests__/main.test.ts @@ -15,7 +15,7 @@ test('gets download url to binary', async () => { // shows how the runner will run a javascript action with env / stdout protocol test('test runs', () => { process.env['RUNNER_TEMP'] = os.tmpdir() - process.env['INPUT_VERSION'] = '0.34.2' + process.env['INPUT_VERSION'] = '1.0.0' const np = process.execPath const ip = path.join(__dirname, '..', 'lib', 'main.js') const options: cp.ExecFileSyncOptions = { diff --git a/action.yml b/action.yml index a41572e..cbe36c9 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,7 @@ inputs: version: description: Version of Supabase CLI to install required: false - default: 0.34.2 + default: 1.0.0 runs: using: node16 main: dist/index.js