Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@secustor/backstage-plugin-renovate-common": "workspace:^",
"@secustor/backstage-plugin-renovate-node": "workspace:^",
"find-up": "^5.0.0",
"renovate": "41.149.2"
"renovate": "41.173.1"
},
"devDependencies": {
"@backstage/backend-test-utils": "^1.8.0",
Expand Down
2 changes: 1 addition & 1 deletion plugins/renovate-backend-module-runtime-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ renovate:

# all values are option and can be used to overwrite the default values
image: registry.example.com/renovate/renovate # default: 'ghcr.io/renovatebot/renovate'
tag: latest # default: 41.149.2
tag: latest # default: 41.173.1
```
2 changes: 1 addition & 1 deletion plugins/renovate-backend-module-runtime-docker/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface Config {

/**
* The Docker image tag to use
* Default: '41.149.2'
* Default: '41.173.1'
*/
tag: string;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Docker from 'dockerode';
import { PassThrough } from 'stream';

const imageRepository = 'ghcr.io/renovatebot/renovate';
const imageTag = '41.149.2';
const imageTag = '41.173.1';

export class DockerRuntime implements RenovateWrapper {
#runner: Docker;
Expand Down
Loading