mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-16 08:52:35 +00:00
feat!: use ghcr renovate image (#753)
BREAKING CHANGE: By default the renovate image is now pulled from `ghcr.io/renovatebot/renovate`
This commit is contained in:
parent
53fd09be22
commit
cc52092d4f
4 changed files with 87 additions and 79 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import type { Input } from './input';
|
||||
|
||||
class Docker {
|
||||
private static readonly repository = 'renovate/renovate';
|
||||
private static readonly image = 'ghcr.io/renovatebot/renovate';
|
||||
|
||||
private readonly dockerImage: string;
|
||||
private readonly fullTag: string;
|
||||
|
|
@ -9,7 +9,7 @@ class Docker {
|
|||
constructor(input: Input) {
|
||||
const tag = input.getVersion();
|
||||
|
||||
this.dockerImage = input.getDockerImage() ?? Docker.repository;
|
||||
this.dockerImage = input.getDockerImage() ?? Docker.image;
|
||||
this.fullTag = input.useSlim()
|
||||
? tag
|
||||
? `${tag}-slim`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue