From ddaac8370b5a44710a37f802925c1a7ef8d56733 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Thu, 9 Jul 2026 02:44:03 +0200 Subject: [PATCH 1/3] Bump PSModule/GitHub-Script from 1.7.10 to 1.9.0 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 031f043..d01b76e 100644 --- a/action.yml +++ b/action.yml @@ -30,7 +30,7 @@ runs: using: composite steps: - name: Initialize-PSModule - uses: PSModule/GitHub-Script@0097f3bbe3f413f3b577b9bcc600727b0ca3201a # v1.7.10 + uses: PSModule/GitHub-Script@8083ec1f733f00357ee4d0db0c6056686e483bc0 # v1.9.0 with: Debug: ${{ inputs.Debug }} Prerelease: ${{ inputs.Prerelease }} From eb4fb6e2f98cc9e680b32ec832da7a67ecdfaa72 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 10 Jul 2026 10:39:58 +0200 Subject: [PATCH 2/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 d01b76e..a8439cc 100644 --- a/action.yml +++ b/action.yml @@ -15,7 +15,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 3178f6dc22430e4d97e49bd7bf2aaf426d284271 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 10 Jul 2026 10:40:00 +0200 Subject: [PATCH 3/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 268dc04..631dc27 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ The Initialize-PSModule action will prepare the runner for the PSModule framewor | - | - | - | - | | `Debug` | Enable debug output. | `false` | `'false'` | | `Verbose` | Enable verbose output. | `false` | `'false'` | -| `Version` | Specifies the version of the GitHub module to be installed. The value must be an exact version. | `false` | | +| `Version` | 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)'). | `false` | | | `Prerelease` | Allow prerelease versions if available. | `false` | `'false'` | | `WorkingDirectory` | The working directory where the script runs. | `false` | `${{ github.workspace }}` |