From 7bbbb7314aebe1d5b22fcffccb0ab21d1d8bcf91 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 10 Jul 2026 10:41:46 +0200 Subject: [PATCH 1/3] Document Version input accepts NuGet version ranges (GitHub-Script v1.9.0) --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 8759594..cd34362 100644 --- a/action.yml +++ b/action.yml @@ -22,7 +22,7 @@ inputs: required: false default: 'false' Version: - description: Specifies the version of the GitHub module to be installed. The value must be an exact version. + description: Specifies the version of the GitHub module to be installed. Accepts an exact version or a NuGet version range (for example '[1.2.0, 2.0.0)'). required: false Prerelease: description: Allow prerelease versions if available. From 126fd30d026c06a7ae437a11b185e664fa970c72 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 10 Jul 2026 10:41:49 +0200 Subject: [PATCH 2/3] Document Version input accepts NuGet version ranges (GitHub-Script v1.9.0) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37dfb24..a6b654b 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ customize rule selection, severity filtering, and custom rule inclusion. | `SettingsFilePath` | The path to the settings file. | false | `.github/linters/.powershell-psscriptanalyzer.psd1` | | `Debug` | Enable debug output. | false | `'false'` | | `Verbose` | Enable verbose output. | false | `'false'` | -| `Version` | Specifies the exact version of the GitHub module to install. | false | | +| `Version` | Specifies the version of the GitHub module to install; accepts an exact version or a NuGet version range (for example `[1.2.0, 2.0.0)`). | false | | | `Prerelease` | Allow prerelease versions if available. | false | `'false'` | | `WorkingDirectory` | The working directory where the script runs. | false | `'.'` | | `ReportAsJson` | Output generated reports in JSON format in addition to the configured format. | false | `'true'` | From fee5c4ab584efb198fc0b7a77300c572faba1276 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 10 Jul 2026 10:51:50 +0200 Subject: [PATCH 3/3] Revert README table edit (keep aligned format); action.yml is the canonical Version doc --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a6b654b..37dfb24 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ customize rule selection, severity filtering, and custom rule inclusion. | `SettingsFilePath` | The path to the settings file. | false | `.github/linters/.powershell-psscriptanalyzer.psd1` | | `Debug` | Enable debug output. | false | `'false'` | | `Verbose` | Enable verbose output. | false | `'false'` | -| `Version` | Specifies the version of the GitHub module to install; accepts an exact version or a NuGet version range (for example `[1.2.0, 2.0.0)`). | false | | +| `Version` | Specifies the exact version of the GitHub module to install. | false | | | `Prerelease` | Allow prerelease versions if available. | false | `'false'` | | `WorkingDirectory` | The working directory where the script runs. | false | `'.'` | | `ReportAsJson` | Output generated reports in JSON format in addition to the configured format. | false | `'true'` |