From a92d244d9cf2c3a688304c1c3a711d25c98a21b1 Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Tue, 6 Aug 2024 20:01:46 -0700 Subject: [PATCH 1/5] Wildcard version in index.js --- dist/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index f3cf21e..3cc3345 100644 --- a/dist/index.js +++ b/dist/index.js @@ -81,7 +81,7 @@ module.exports = { const defaultPython = isWindows() ? "python" : "python3"; try { - const version = getInput("version", /^[\d.*]+$/, "0.*"); + const version = getInput("version", /^[\d.*]+$/, "*"); const command = getInput("command", /^cfn-lint\s || null/, null); const python = getInput("python", /^.+$/, defaultPython); return { version, command, python }; @@ -4332,4 +4332,4 @@ const setup = __nccwpck_require__(7391); module.exports = __webpack_exports__; /******/ })() -; \ No newline at end of file +; From 18688f83efbd8f872ad2342eb678e04719af45bd Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Tue, 6 Aug 2024 20:03:45 -0700 Subject: [PATCH 2/5] Update dist/index.js --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 3cc3345..217ee06 100644 --- a/dist/index.js +++ b/dist/index.js @@ -81,7 +81,7 @@ module.exports = { const defaultPython = isWindows() ? "python" : "python3"; try { - const version = getInput("version", /^[\d.*]+$/, "*"); + const version = getInput("version", /^[\d.*]+$/, ".*"); const command = getInput("command", /^cfn-lint\s || null/, null); const python = getInput("python", /^.+$/, defaultPython); return { version, command, python }; From b74da55b9dcd7ed10f8fadea53c0e0dbf0905a7d Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Tue, 6 Aug 2024 20:06:43 -0700 Subject: [PATCH 3/5] Update dist/index.js --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 217ee06..6f67e40 100644 --- a/dist/index.js +++ b/dist/index.js @@ -81,7 +81,7 @@ module.exports = { const defaultPython = isWindows() ? "python" : "python3"; try { - const version = getInput("version", /^[\d.*]+$/, ".*"); + const version = getInput("version", /^[\d.*]+$/, "*.*"); const command = getInput("command", /^cfn-lint\s || null/, null); const python = getInput("python", /^.+$/, defaultPython); return { version, command, python }; From 146d9047e3e2ad594553cbf075b41e639cd98480 Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Tue, 6 Aug 2024 20:07:29 -0700 Subject: [PATCH 4/5] Update dist/index.js --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 6f67e40..b87a0c3 100644 --- a/dist/index.js +++ b/dist/index.js @@ -81,7 +81,7 @@ module.exports = { const defaultPython = isWindows() ? "python" : "python3"; try { - const version = getInput("version", /^[\d.*]+$/, "*.*"); + const version = getInput("version", /^[\d.*]+$/, "1.*"); const command = getInput("command", /^cfn-lint\s || null/, null); const python = getInput("python", /^.+$/, defaultPython); return { version, command, python }; From 3e69be58ef13e469ba84174b8a18e5353489be8f Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Tue, 6 Aug 2024 20:13:44 -0700 Subject: [PATCH 5/5] Remove windows-2019 runner --- .github/workflows/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 85f577c..611b630 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,6 @@ jobs: os: - ubuntu-20.04 - ubuntu-22.04 - - windows-2019 - windows-2022 - macos-13 - macos-14