feat!: drop useSlim and use `latest' tag (#782)

BREAKING CHANGE: The action now uses the slim renovate version by default.
This commit is contained in:
Michael Kriese 2023-07-12 14:19:26 +02:00 committed by GitHub
parent 15c94446ef
commit 89ff8f7bf9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 32 deletions

View file

@ -10,11 +10,7 @@ class Docker {
const tag = input.getVersion();
this.dockerImage = input.getDockerImage() ?? Docker.image;
this.fullTag = input.useSlim()
? tag
? `${tag}-slim`
: 'slim'
: tag ?? 'full';
this.fullTag = tag ?? 'latest';
}
image(): string {

View file

@ -60,10 +60,6 @@ class Input {
return null;
}
useSlim(): boolean {
return core.getInput('useSlim') !== 'false';
}
getDockerImage(): string | null {
return core.getInput('renovate-image') || null;
}