Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump workflow node version to 20 (#4034)
* chore: bump workflow node version to 20 `lru-cache` has dropped support for Node 18, and now requires Node 20 or higher. When `projen` creates new projects that use jest, those pull in `lru-cache` using the following dependency path: ``` jest > @jest/core > @jest/transform > @babel/core > @babel/helper-compilation-targets > lru-cache ``` That happens to install the newest `lru-cache` version, which no longer works on Node 18, and so our tests fail. Bump our workflow Node to 20 to at least make our PR build pass again. I don't know if this should have bearing on projen's minimum node version; I suppose *technically* not, and people with a working `package-lock` will be unaffected... but it might be hard to explain the intricacies to users. * Need 20.9.0
- Loading branch information