📖 [Docs]: Document Version input accepts NuGet version ranges#38
Merged
Marius Storhaug (MariusStorhaug) merged 1 commit intoJul 10, 2026
Merged
Conversation
Copilot started reviewing on behalf of
Marius Storhaug (MariusStorhaug)
July 10, 2026 08:43
View session
There was a problem hiding this comment.
Pull request overview
Updates the GitHub Action metadata to document that the Version input supports both exact versions and NuGet version ranges, aligning the documentation with the already-shipped behavior in the referenced GitHub-Script dependency.
Changes:
- Update
Versioninput description to state it accepts an exact version or a NuGet version range (with an example).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GitHub-Script v1.9.0 (already on
main) expanded the passed-throughVersioninput to accept a NuGet version range in addition to an exact version. This updates theVersioninput documentation so consumers know ranges are supported.Changed:
Versioninput documentationThe
Versioninput description inaction.yml(and the README input table, where present) now states that it accepts an exact version or a NuGet version range (for example[1.2.0, 2.0.0)), instead of claiming the value must be an exact version.Technical Details
Documentation-only; no behavior change. The action already installs the
GitHubmodule via GitHub-Script v1.9.0, which resolves NuGet version ranges. Mirrors the fix applied in PSModule/Release-GHRepository#106.