diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 1af344c2f1573..c2876d7829b45 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -66,7 +66,7 @@ // These aren't a monorepo, but we may as well do them all together anyway. { groupName: 'GitHub API packages', - matchPackagePatterns: [ '^@actions/', '^@octokit/' ], + matchPackageNames: [ '@actions/**', '@octokit/**' ], }, { groupName: 'GitHub actions upload/download artifact', @@ -76,12 +76,12 @@ { groupName: 'Codeception packages', matchDatasources: [ 'packagist' ], - matchPackagePrefixes: [ 'codeception/' ], + matchPackageNames: [ 'codeception/**' ], }, { groupName: 'Docker actions', matchDepTypes: [ 'action' ], - matchPackagePrefixes: [ 'docker/' ], + matchPackageNames: [ 'docker/**' ], }, // 🤷 diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 7640374b61879..b74a02ec8a13a 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -44,7 +44,7 @@ jobs: configurationFile: /tmp/monorepo/.github/renovate-config.js token: ${{ secrets.RENOVATE_TOKEN }} mount-docker-socket: true - renovate-version: 37.246.1 + renovate-version: 38.57.3 env: LOG_LEVEL: ${{ github.event.inputs.logLevel || 'debug' }} RENOVATE_DRY_RUN: ${{ github.event.inputs.dryRun == 'no' && 'null' || github.event.inputs.dryRun || 'null' }}