Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ runs:
}}' >> "$GITHUB_ENV"
- name: Setup pnpm
uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4.3.0
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
with:
standalone: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ jobs:
- run: df -h

- name: docker-config
uses: containerbase/internal-tools@d849c1c2ca8bc05a2271c2eb63fa939bdf4c6b3a # v4.2.2
uses: containerbase/internal-tools@e5da4a68add3af5560718149016e456b67325032 # v4.2.3
with:
command: docker-config

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
show-progress: false

- name: Setup pnpm
uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4.3.0
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
with:
standalone: true

Expand Down
23 changes: 23 additions & 0 deletions docs/usage/mend-hosted/job-scheduling.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,26 @@ The table below describes all the Renovate statuses.
| resource-limit | A resource limit was hit while running the last job | Weekly |
| unknown | An unknown error occurred while running the last job | Weekly |
| disabled | Renovate will not run on this repository | Monthly |

```mermaid
flowchart TD
A[Installed Repository] --> B{Renovate Status}
B -->|<code>new</code>| C[Active jobs<br>4-hourly #40;1#41;]
B -->|<code>activated</code>| C
B -->|<code>onboarded</code>| D[Inactive jobs<br>Daily]
B -->|<code>onboarding</code>| D
B -->|<code>silent</code>| D
B -->|<code>failed</code>| D
B -->|<code>timeout</code>| E[Blocked jobs<br>Weekly]
B -->|<code>resource-limit</code>| E
B -->|<code>kernel-out-of-memory</code>| E
B -->|<code>unknown</code>| E
B -->|<code>disabled</code>| F[All repos<br>Monthly]
C --> G[Job Queue]
D --> G
E --> G
F --> G
G --> H[Job Runner]
```

(1) Renovate Enterprise jobs are scheduled every hour for repositories on GitHub and Azure DevOps.
3 changes: 2 additions & 1 deletion lib/config/options/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ const options: Readonly<RenovateOptions>[] = [
description:
'Change this value to override the default Renovate sidecar image.',
type: 'string',
default: 'ghcr.io/renovatebot/base-image:13.21.9',
default: 'ghcr.io/renovatebot/base-image:13.21.10',
globalOnly: true,
deprecationMsg:
'The usage of `binarySource=docker` is deprecated, and will be removed in the future',
Expand Down Expand Up @@ -1122,6 +1122,7 @@ const options: Readonly<RenovateOptions>[] = [
'Skip installing modules/dependencies if lock file updating is possible without a full install.',
type: 'boolean',
default: null,
supportedManagers: ['npm'],
},
{
name: 'autodiscover',
Expand Down
8 changes: 0 additions & 8 deletions lib/modules/manager/maven-wrapper/extract.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ describe('modules/manager/maven-wrapper/extract', () => {
datasource: 'maven',
depName: 'maven',
packageName: 'org.apache.maven:apache-maven',
versioning: 'maven',
},
{
currentValue: '3.1.0',
Expand All @@ -30,7 +29,6 @@ describe('modules/manager/maven-wrapper/extract', () => {
datasource: 'maven',
depName: 'maven-wrapper',
packageName: 'org.apache.maven.wrapper:maven-wrapper',
versioning: 'maven',
},
]);
});
Expand All @@ -46,7 +44,6 @@ describe('modules/manager/maven-wrapper/extract', () => {
datasource: 'maven',
depName: 'maven-wrapper',
packageName: 'org.apache.maven.wrapper:maven-wrapper',
versioning: 'maven',
},
]);
});
Expand All @@ -60,7 +57,6 @@ describe('modules/manager/maven-wrapper/extract', () => {
datasource: 'maven',
depName: 'maven-wrapper',
packageName: 'org.apache.maven.wrapper:maven-wrapper',
versioning: 'maven',
},
]);
});
Expand All @@ -77,7 +73,6 @@ describe('modules/manager/maven-wrapper/extract', () => {
datasource: 'maven',
depName: 'maven-wrapper',
packageName: 'org.apache.maven.wrapper:maven-wrapper',
versioning: 'maven',
},
]);
});
Expand All @@ -91,7 +86,6 @@ describe('modules/manager/maven-wrapper/extract', () => {
datasource: 'maven',
depName: 'maven-wrapper',
packageName: 'org.apache.maven.wrapper:maven-wrapper',
versioning: 'maven',
},
]);
});
Expand All @@ -105,7 +99,6 @@ describe('modules/manager/maven-wrapper/extract', () => {
datasource: 'maven',
depName: 'maven-wrapper',
packageName: 'org.apache.maven.wrapper:maven-wrapper',
versioning: 'maven',
},
]);
});
Expand All @@ -125,7 +118,6 @@ describe('modules/manager/maven-wrapper/extract', () => {
datasource: 'maven',
depName: 'maven',
packageName: 'org.apache.maven:apache-maven',
versioning: 'maven',
},
]);
});
Expand Down
3 changes: 0 additions & 3 deletions lib/modules/manager/maven-wrapper/extract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { logger } from '../../../logger/index.ts';
import { coerceArray } from '../../../util/array.ts';
import { newlineRegex, regEx } from '../../../util/regex.ts';
import { MavenDatasource } from '../../datasource/maven/index.ts';
import { id as versioning } from '../../versioning/maven/index.ts';
import type { PackageDependency, PackageFileContent } from '../types.ts';
import type { MavenVersionExtract, Version } from './types.ts';

Expand Down Expand Up @@ -68,7 +67,6 @@ export function extractPackageFile(
currentValue: extractResult.maven?.version,
replaceString: extractResult.maven?.replaceString,
datasource: MavenDatasource.id,
versioning,
};
deps.push(maven);
}
Expand All @@ -80,7 +78,6 @@ export function extractPackageFile(
currentValue: extractResult.wrapper?.version,
replaceString: extractResult.wrapper?.replaceString,
datasource: MavenDatasource.id,
versioning,
};
deps.push(wrapper);
}
Expand Down
2 changes: 0 additions & 2 deletions lib/modules/manager/maven-wrapper/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { Category } from '../../../constants/index.ts';
import { MavenDatasource } from '../../datasource/maven/index.ts';
import { id as versioning } from '../../versioning/maven/index.ts';

export { updateArtifacts } from './artifacts.ts';
export { extractPackageFile } from './extract.ts';
Expand All @@ -13,7 +12,6 @@ export const defaultConfig = {
'/(^|\\/).mvn/wrapper/maven-wrapper.properties$/',
'/(^|\\/)mvnw(.cmd)?$/',
],
versioning,
};

export const supportedDatasources = [MavenDatasource.id];
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@
"@types/mdast": "4.0.4",
"@types/moo": "0.5.10",
"@types/ms": "2.1.0",
"@types/node": "24.11.2",
"@types/node": "24.12.0",
"@types/parse-link-header": "2.0.3",
"@types/punycode": "2.1.4",
"@types/sax": "1.2.7",
Expand Down
Loading
Loading