Compare commits

..

4 commits

Author SHA1 Message Date
renovate[bot]
9d9ae8f24d
chore(deps): update dependency @tsconfig/strictest to v2.0.8
Some checks are pending
Build / prepare (push) Waiting to run
Build / commitlint (push) Waiting to run
Build / lint (push) Blocked by required conditions
Build / e2e (example/renovate-config.js) (push) Blocked by required conditions
Build / e2e (example/renovate-config.json) (push) Blocked by required conditions
Build / release (push) Blocked by required conditions
| datasource | package             | from  | to    |
| ---------- | ------------------- | ----- | ----- |
| npm        | @tsconfig/strictest | 2.0.6 | 2.0.8 |
2025-12-12 14:58:53 +00:00
Michael Kriese
7f974c0f8a
feat: enable tty for docker run (#974)
Some checks are pending
Build / prepare (push) Waiting to run
Build / commitlint (push) Waiting to run
Build / lint (push) Blocked by required conditions
Build / e2e (example/renovate-config.js) (push) Blocked by required conditions
Build / e2e (example/renovate-config.json) (push) Blocked by required conditions
Build / release (push) Blocked by required conditions
feat: enable tty to docker run
2025-12-12 15:57:18 +01:00
renovate[bot]
6856febbe5
ci(deps): update renovate docker tag to v42.50.0
| datasource | package                      | from    | to      |
| ---------- | ---------------------------- | ------- | ------- |
| docker     | ghcr.io/renovatebot/renovate | 42.49.0 | 42.50.0 |
2025-12-12 13:29:24 +00:00
renovate[bot]
8342c937a8
ci(deps): update renovate docker tag to v42.49.0
| datasource | package                      | from    | to      |
| ---------- | ---------------------------- | ------- | ------- |
| docker     | ghcr.io/renovatebot/renovate | 42.47.0 | 42.49.0 |
2025-12-12 09:27:40 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ concurrency:
cancel-in-progress: true
env:
RENOVATE_VERSION: 42.47.0 # renovate: datasource=docker depName=renovate packageName=ghcr.io/renovatebot/renovate
RENOVATE_VERSION: 42.50.0 # renovate: datasource=docker depName=renovate packageName=ghcr.io/renovatebot/renovate
jobs:
prepare:

View file

@ -76,7 +76,7 @@ export class Renovate {
dockerArguments.push(dockerCmd);
}
const command = `docker run ${dockerArguments.join(' ')}`;
const command = `docker run -t ${dockerArguments.join(' ')}`;
const code = await exec(command);
if (code !== 0) {