From c217706976bda227d4dcf26df614743f15568645 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 10 Jul 2026 10:41:39 +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 5e94aac..8979567 100644 --- a/action.yml +++ b/action.yml @@ -24,7 +24,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 20fe3d6ab296dc1db39685803a4e2e02390efd03 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 10 Jul 2026 10:41:41 +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 e5806eb..7736f0f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ or missing results. It supports three categories of test suites: Source Code, PS | `ModuleTestSuites` | JSON array specifying TestName and OSName for Module test suites. Example: `[{"TestName": "Integration", "OSName": "MacOS"}]` | Yes | | | `Debug` | Enable debug output (`true`/`false`). | No | `false` | | `Verbose` | Enable verbose output (`true`/`false`). | No | `false` | -| `Version` | Exact version of the GitHub module to install (e.g., `1.0.0`). | No | Latest | +| `Version` | Version of the GitHub module to install; accepts an exact version or a NuGet version range (for example `[1.2.0, 2.0.0)`). | No | Latest | | `Prerelease` | Allow installing prerelease module versions (`true`/`false`). | No | `false` | | `WorkingDirectory` | Working directory for the script. | No | `.` | From e9653ac6a6b1c1b755b6bb7acf2d0be109e45e84 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 10 Jul 2026 10:51:49 +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 7736f0f..e5806eb 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ or missing results. It supports three categories of test suites: Source Code, PS | `ModuleTestSuites` | JSON array specifying TestName and OSName for Module test suites. Example: `[{"TestName": "Integration", "OSName": "MacOS"}]` | Yes | | | `Debug` | Enable debug output (`true`/`false`). | No | `false` | | `Verbose` | Enable verbose output (`true`/`false`). | No | `false` | -| `Version` | Version of the GitHub module to install; accepts an exact version or a NuGet version range (for example `[1.2.0, 2.0.0)`). | No | Latest | +| `Version` | Exact version of the GitHub module to install (e.g., `1.0.0`). | No | Latest | | `Prerelease` | Allow installing prerelease module versions (`true`/`false`). | No | `false` | | `WorkingDirectory` | Working directory for the script. | No | `.` |