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
Fix deprecated Node version when installing pnpm on our CI
Currently we're getting the following deprecation warnings about Node when installing pnpm on our CI:
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: pnpm/action-setup@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
As seen here:
An issue has been raised addressing it which should be monitored:
Apparently this can be avoided by using corepack enable but ideally we'd use native pnpm Github actions
corepack enable
The text was updated successfully, but these errors were encountered:
Fixed and tested in this PR: #48
Sorry, something went wrong.
#30 Fixed CI Deprecated Node Version Warning (#48)
c04981e
Bumped pnpm action-setup version to v3
TomChamberlainUK
Successfully merging a pull request may close this issue.
Fix CI pnpm Deprecated Node Version
Fix deprecated Node version when installing pnpm on our CI
Description
Currently we're getting the following deprecation warnings about Node when installing pnpm on our CI:
As seen here:
An issue has been raised addressing it which should be monitored:
Apparently this can be avoided by using
corepack enable
but ideally we'd use native pnpm Github actionsDone When
The text was updated successfully, but these errors were encountered: