From 31ec3e1ec23dc9f3065c3365eacfda2b765b0ce9 Mon Sep 17 00:00:00 2001 From: Yoichi Kawasaki Date: Fri, 5 Apr 2024 09:27:56 +0900 Subject: [PATCH] update README, remove CHANGELOG Signed-off-by: Yoichi Kawasaki --- CHANGELOG.md | 106 --------------------------------------------------- README.md | 14 ++++--- 2 files changed, 9 insertions(+), 111 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 218b392..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,106 +0,0 @@ -# Change Log - -All notable changes to the "action-setup-kube-tools" will be documented in this file. - -## v0.10.0 - -- update action to node20 - -## v0.9.3 - -- Bump json5 from 2.1.3 to 2.2.3 - [#41](https://github.com/yokawasa/action-setup-kube-tools/pull/41) -- Bump undici from 5.11.0 to 5.19.1 - [#43](https://github.com/yokawasa/action-setup-kube-tools/pull/43) -- upgrade default tools version - [#44](https://github.com/yokawasa/action-setup-kube-tools/pull/44) - - kubectl from 1.20.2 to 1.24.10 - - kustomize from 4.5.7 to 5.0.0 - - helm from 3.6.3 to 3.11.1 - - conftest from 0.19.0 to 0.39.0 - - yq from 4.7.1 to 4.30.7 - - rancher from 2.4.10 to 2.7.0 - - tilt from 0.18.11 to 0.31.2 - - skaffold from 1.20.0 to 2.1.0 - - kube-score from 1.10.1 to 1.16.1 - -## v0.9.2 - -- upgrade kustomize 4.5.7 by @MichaelSp - [#39](https://github.com/yokawasa/action-setup-kube-tools/pull/39) - -## v0.9.1 - -- Fix the issue : Using the action produces set-output deprecation warnings by @msg-freiheit - [#36](https://github.com/yokawasa/action-setup-kube-tools/issues/36) - -## v0.9.0 - -- Support [kubeconform](https://github.com/yannh/kubeconform) - [#32](https://github.com/yokawasa/action-setup-kube-tools/issues/32) - -## v0.8.3 - -- Upgrade to Node 16 and upgrade GitHub libs by @yhrn in [#31](https://github.com/yokawasa/action-setup-kube-tools/pull/31) - -## v0.8.2 - -- Bump undici from 5.4.0 to 5.5.1 by @dependabot in [#26](https://github.com/yokawasa/action-setup-kube-tools/pull/26) - -## v0.8.1 - -- Bump ajv from 6.10.2 to 6.12.6 by @dependabot in [#20](https://github.com/yokawasa/action-setup-kube-tools/pull/20) -- Bump minimist from 1.2.5 to 1.2.6 by @dependabot in [#21](https://github.com/yokawasa/action-setup-kube-tools/pull/21) -- Fix error in GHA workflow: prettier: not found by @yokawasa in [#25](https://github.com/yokawasa/action-setup-kube-tools/pull/25) - -## v0.8.0 - -- remove `helmv3` parameter and install helm v3 with `helm` parameter - [#19](https://github.com/yokawasa/action-setup-kube-tools/pull/19) -- Instead add `helmv2` parameter to install helm v2 - -## v0.7.1 - -- fix: missing v prefix from kubeval and yq - [#16](https://github.com/yokawasa/action-setup-kube-tools/pull/16) -- changed default versions: yq v4.7.1, kubeval v0.16.1 - -## v0.7.0 - -- Add fail-fast parameter (fail-fast:true by default) that allows you to choose to fail fast immediately when it fails to download (say due to a bad version) - [#14](https://github.com/yokawasa/action-setup-kube-tools/issues/14) -- Support tool version 'v' prefix. Prior to this, the action only accept the tool version without 'v' prefix, but now the action automatically add/remove the prefix as necessary - [#13](https://github.com/yokawasa/action-setup-kube-tools/issues/13) - -## v0.6.0 - -- add tools setup option to choose which tool to setup - [#8](https://github.com/yokawasa/action-setup-kube-tools/issues/8) -- up default tool versions - - kubectl: 1.20.2 - - kustomize: 4.0.5 - - helm: 2.17.0 - - helmv3: 3.5.2 - -## v0.5.0 - -- Add kube-score - [#10](https://github.com/yokawasa/action-setup-kube-tools/pull/10) - - https://github.com/zegl/kube-score - -## v0.4.0 - -- Minor markdown cleanup -- Bump `actions/checkout` to v2 in tests and documentation -- Add Tilt and Skaffold - [#6](https://github.com/yokawasa/action-setup-kube-tools/pull/6) - - https://tilt.dev - - https://skaffold.dev - -## v0.3.0 - -- Add Rancher CLI - [#4](https://github.com/yokawasa/action-setup-kube-tools/pull/4) - - https://rancher.com/docs/rancher/v2.x/en/cli/ - -## v0.2.0 - -- Bumps @actions/core from 1.2.0 to 1.2.6 - [#2](https://github.com/yokawasa/action-setup-kube-tools/pull/2) - -## v0.1.0 - -- Initial release - -Default command versions: -- `kubectl`: `1.18.2` -- `kustomize`: `3.5.5` -- `helm`: `2.16.7` -- `helmv3`: `3.2.1` -- `kubeval`: `0.15.0` -- `conftest`: `0.19.0` diff --git a/README.md b/README.md index 9554b99..b4e2b93 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Specific versions for the commands can be setup by adding inputs parameters like runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: yokawasa/action-setup-kube-tools@v0.11.0 + - uses: yokawasa/action-setup-kube-tools@v0.11.1 with: kubectl: '1.25' kustomize: '5.0.0' @@ -82,7 +82,7 @@ Default versions for the commands will be setup if you don't give any inputs lik runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: yokawasa/action-setup-kube-tools@v0.11.0 + - uses: yokawasa/action-setup-kube-tools@v0.11.1 - run: | kubectl version --client kustomize version @@ -103,7 +103,7 @@ By specifying setup-tools you can choose which tools the action setup. Supported runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: yokawasa/action-setup-kube-tools@v0.11.0 + - uses: yokawasa/action-setup-kube-tools@v0.11.1 with: setup-tools: | kubectl @@ -127,7 +127,7 @@ By specifying arch-type you can choose the processor architecture type of the to test: steps: - uses: actions/checkout@v4 - - uses: yokawasa/action-setup-kube-tools@v0.11.0 + - uses: yokawasa/action-setup-kube-tools@v0.11.1 with: arch-type: 'arm64' setup-tools: | @@ -163,7 +163,7 @@ Finally push the results ``` git add dist git commit -a -m "prod dependencies" -git push origin releases/v0.10.0 +git push origin releases/v0.11.1 ``` ## References @@ -182,3 +182,7 @@ git push origin releases/v0.10.0 ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/yokawasa/action-setup-kube-tools + +## Changelog + +Please see the [list of releases](https://github.com/yokawasa/action-setup-kube-tools/releases) for information on changes between releases.