diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 29d211d5cc..f0916226cd 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -7,6 +7,13 @@ // do not pin dev dependencies, which are part of the best-practices preset ignorePresets: [':pinDevDependencies', ':pinDigest', 'docker:pinDigests'], + constraints: { + // TODO(freben): Remove this later; it addresses a temporary issue in corepack + // https://github.com/nodejs/corepack/issues/379 + // https://github.com/renovatebot/renovate/discussions/27465 + corepack: '0.24.1', + }, + // the default limit are 10 PRs prConcurrentLimit: 20, @@ -38,5 +45,14 @@ matchSourceUrls: ['https://github.com/yarnpkg/berry'], enabled: false, }, + // ESM only majors, that we're not ready for yet + { + matchPackageNames: ['node-fetch'], + allowedVersions: '<3.0.0', + }, + { + matchPackageNames: ['inquirer', '@types/inquirer'], + allowedVersions: '<9.0.0', + }, ], }