We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
+
When the packageManager version is defined in a corepack compatible way, e.g. pnpm:9.5.0+ the action checkout fails with
packageManager
pnpm:9.5.0+
ERR_PNPM_SPEC_NOT_SUPPORTED_BY_ANY_RESOLVER pnpm@9.5.0+ isn't supported by any available resolver.
It would be good to support + range specifier to:
9.5.0
The text was updated successfully, but these errors were encountered:
actually, you can just add this to workflow
with: version: latest
Sorry, something went wrong.
Good to know, but I don't think it resolves the issue of having 9.5.0+ in the packageManager field.
9.5.0+
AFAICS this is allowed by package.json spec but I couldn't find definite answer in core pack docs.
package.json
Yes, I agree that 9.5.0+ should be supported according to the spec (in idea it is also legitimate
No branches or pull requests
When the
packageManager
version is defined in a corepack compatible way, e.g.pnpm:9.5.0+
the action checkout fails withIt would be good to support
+
range specifier to:9.5.0
The text was updated successfully, but these errors were encountered: