bump!: update default version to 1.0.0 (#6)

The PR updates the default to-be-setup version from 0.16.0 to 1.0.0.

Signed-off-by: Billy Zha <jinzha1@microsoft.com>
This commit is contained in:
Billy Zha 2023-03-21 16:43:54 +08:00 committed by GitHub
parent e21bf989bd
commit c90396b2dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ jobs:
os: [macos-latest, windows-latest, ubuntu-latest] os: [macos-latest, windows-latest, ubuntu-latest]
version: version:
- 0.15.1 - 0.15.1
- 0.16.0 - 1.0.0
fail-fast: true fail-fast: true
steps: steps:
- name: Checkout - name: Checkout

View File

@ -19,13 +19,13 @@ steps:
Install a specific version of the `oras` CLI by specifying the input `version` without the prefix `v`. Install a specific version of the `oras` CLI by specifying the input `version` without the prefix `v`.
Supported versions can be found at [`oras` releases](https://github.com/oras-project/oras/releases). Supported versions can be found at [`oras` releases](https://github.com/oras-project/oras/releases).
For example, install `oras` version `v0.16.0`. For example, install `oras` version `v1.0.0`.
```yaml ```yaml
steps: steps:
- uses: oras-project/setup-oras@main - uses: oras-project/setup-oras@main
with: with:
version: 0.16.0 version: 1.0.0
- run: oras version - run: oras version
``` ```

View File

@ -17,7 +17,7 @@ inputs:
version: version:
description: Version of ORAS CLI to install description: Version of ORAS CLI to install
required: false required: false
default: 0.16.0 default: 1.0.0
runs: runs:
using: node16 using: node16
main: dist/index.js main: dist/index.js