diff --git a/CHANGELOG.md b/CHANGELOG.md index e94963b..5b54a67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v1.4.1](https://github.com/k1LoW/gh-setup/compare/v1.4.0...v1.4.1) - 2023-05-10 +- Support application/x-gtar by @k1LoW in https://github.com/k1LoW/gh-setup/pull/77 +- Support env `ACTIONS_STEP_DEBUG` by @k1LoW in https://github.com/k1LoW/gh-setup/pull/79 + ## [v1.4.0](https://github.com/k1LoW/gh-setup/compare/v1.3.0...v1.4.0) - 2023-04-21 - Support bzip2 by @k1LoW in https://github.com/k1LoW/gh-setup/pull/75 diff --git a/action.yml b/action.yml index 04b0dbd..24d917b 100644 --- a/action.yml +++ b/action.yml @@ -45,7 +45,7 @@ inputs: required: false gh-setup-version: description: "Version of gh-setup" - default: "v1.4.0" + default: "v1.4.1" required: false runs: using: "composite" diff --git a/version/version.go b/version/version.go index 6aae2d4..b7c5162 100644 --- a/version/version.go +++ b/version/version.go @@ -4,4 +4,4 @@ package version const Name string = "gh-setup" // Version for this. -var Version = "1.4.0" +var Version = "1.4.1"