From 1c2489cf6baa3d02d8ec20318202cf341d97fb64 Mon Sep 17 00:00:00 2001 From: Ivan Voskoboinyk Date: Thu, 3 Nov 2022 15:12:33 +0200 Subject: [PATCH] Upgrade goss version to 0.3.20 (#18) * Upgrade GOSS version to 0.30.20 That's the latest version currently available See https://github.com/aelsabbahy/goss/releases/tag/v0.3.20 * Update action.yml * Update README.md * Update README.md --- README.md | 4 ++-- action.yml | 2 +- src/main.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2a27d1e..bf0dd27 100644 --- a/README.md +++ b/README.md @@ -15,12 +15,12 @@ Read more about Goss at https://goss.rocks/. ### `version` -**Optional** The required version of Goss to install. Default `"v0.3.16"`. +**Optional** The required version of Goss to install. Default `"v0.3.20"`. ## Example usage ```yml uses: e1himself/goss-installation-action with: - version: 'v0.3.16' + version: 'v0.3.20' ``` diff --git a/action.yml b/action.yml index 535db96..608ddee 100644 --- a/action.yml +++ b/action.yml @@ -4,7 +4,7 @@ author: 'ivan.voskoboiynk@gmail.com' inputs: version: description: 'Goss release version to install' - default: 'v0.3.9' + default: 'v0.3.20' required: false runs: using: 'node16' diff --git a/src/main.ts b/src/main.ts index 539692a..0b3f9c0 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,7 +3,7 @@ import * as tc from '@actions/tool-cache' import fs from 'fs' const ARCH = 'amd64' -const DEFAULT_VERSION = 'v0.3.16' +const DEFAULT_VERSION = 'v0.3.20' const ERROR_MESSAGE = 'Failed to install goss' interface CommandsMap {