From 9b0aea8feb37c880a3f701aa8f9780a880186af6 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Thu, 9 Jul 2026 02:43:41 +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 14a673c..8178e7c 100644 --- a/action.yml +++ b/action.yml @@ -39,7 +39,7 @@ runs: using: composite steps: - name: Get-PesterCodeCoverage - uses: PSModule/GitHub-Script@0097f3bbe3f413f3b577b9bcc600727b0ca3201a # v1.7.10 + uses: PSModule/GitHub-Script@8083ec1f733f00357ee4d0db0c6056686e483bc0 # v1.9.0 env: PSMODULE_GET_PESTERCODECOVERAGE_INPUT_StepSummary_Mode: ${{ inputs.StepSummary_Mode }} PSMODULE_GET_PESTERCODECOVERAGE_INPUT_CodeCoveragePercentTarget: ${{ inputs.CodeCoveragePercentTarget }} From 21e1f71268b5472cf029568fd341f3a887b9b08b Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 10 Jul 2026 10:39:54 +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 8178e7c..ee1fc33 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 99fa38fa36c860c76402f7d010b62235cd9b22ad Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 10 Jul 2026 10:39:55 +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 ebc6dd6..689d445 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ This GitHub Action is a part of the [PSModule framework](https://github.com/PSMo | ---- | ----------- | -------- | ------- | | `Debug` | Enable debug output | No | `false` | | `Verbose` | Enable verbose output | No | `false` | -| `Version` | Exact version of GitHub module to install | 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 prerelease versions | No | `false` | | `WorkingDirectory` | Working directory for the action | No | `.` | | `StepSummary_Mode` | Controls which sections to show in the GitHub step summary. Use 'Full' for all sections, 'None' to disable, or a comma-separated list of 'Missed, Executed, Files'. | No | `Missed, Files` |