From 91905bfb2ae3486f9609c5e035eec665f1d6f233 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Wed, 28 Apr 2021 23:07:22 -0400 Subject: [PATCH] use v0.3 in the README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 97cfe5d..a81d051 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ jobs: go-version: 1.15 - uses: actions/checkout@v2 - - uses: imjasonh/setup-ko@v0.2 + - uses: imjasonh/setup-ko@v0.3 - run: ko publish ./ ``` @@ -37,7 +37,7 @@ By default, `imjasonh/setup-ko` installs the latest released version of `ko`. You can select a version with the `version` parameter: ```yaml -- uses: imjasonh/setup-ko@v0.2 +- uses: imjasonh/setup-ko@v0.3 with: version: v0.8.0 ``` @@ -52,7 +52,7 @@ To do this, you need to provide credentials to authorize the push. You can use [encrypted secrets](https://docs.github.com/en/actions/reference/encrypted-secrets) to store the authorization token, and pass it to `ko login` before pushing: ``` -- uses: imjasonh/setup-ko@v0.2 +- uses: imjasonh/setup-ko@v0.3 - env: auth_token: ${{ secrets.auth_token }} run: | @@ -85,7 +85,7 @@ jobs: go-version: 1.15 - uses: actions/checkout@v2 - - uses: imjasonh/setup-ko@v0.2 + - uses: imjasonh/setup-ko@v0.3 - run: ko resolve -f config/ > release-${{ github.sha }}.yaml - name: Create Release @@ -110,6 +110,6 @@ jobs: ### A note on versioning -The `@v0.2` in the `uses` statement refers to the version _of the action definition in this repo._ +The `@v0.3` in the `uses` statement refers to the version _of the action definition in this repo._ Regardless of what version of the action definition you use, `imjasonh/setup-ko` will install the latest released version of `ko` unless otherwise specified with `version:`.