From c90396b2ddabd5a364e6551a79984c86cc036996 Mon Sep 17 00:00:00 2001 From: Billy Zha Date: Tue, 21 Mar 2023 16:43:54 +0800 Subject: [PATCH] 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 --- .github/workflows/test.yml | 2 +- README.md | 4 ++-- action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea20a43..86d6a6f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,7 +36,7 @@ jobs: os: [macos-latest, windows-latest, ubuntu-latest] version: - 0.15.1 - - 0.16.0 + - 1.0.0 fail-fast: true steps: - name: Checkout diff --git a/README.md b/README.md index 556a9a4..9666cf5 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,13 @@ steps: 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). -For example, install `oras` version `v0.16.0`. +For example, install `oras` version `v1.0.0`. ```yaml steps: - uses: oras-project/setup-oras@main with: - version: 0.16.0 + version: 1.0.0 - run: oras version ``` diff --git a/action.yml b/action.yml index fe0547a..2577c55 100644 --- a/action.yml +++ b/action.yml @@ -17,7 +17,7 @@ inputs: version: description: Version of ORAS CLI to install required: false - default: 0.16.0 + default: 1.0.0 runs: using: node16 main: dist/index.js