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
4 changed files with 8 additions and 8 deletions

View file

@ -10,7 +10,7 @@ concurrency:
cancel-in-progress: true cancel-in-progress: true
env: 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: jobs:
prepare: prepare:

View file

@ -44,7 +44,7 @@
"@semantic-release/github": "11.0.6", "@semantic-release/github": "11.0.6",
"@semantic-release/npm": "12.0.2", "@semantic-release/npm": "12.0.2",
"@tsconfig/node20": "20.1.8", "@tsconfig/node20": "20.1.8",
"@tsconfig/strictest": "2.0.6", "@tsconfig/strictest": "2.0.8",
"@types/eslint-config-prettier": "6.11.3", "@types/eslint-config-prettier": "6.11.3",
"@types/node": "20.19.25", "@types/node": "20.19.25",
"conventional-changelog-conventionalcommits": "9.1.0", "conventional-changelog-conventionalcommits": "9.1.0",

10
pnpm-lock.yaml generated
View file

@ -37,8 +37,8 @@ importers:
specifier: 20.1.8 specifier: 20.1.8
version: 20.1.8 version: 20.1.8
'@tsconfig/strictest': '@tsconfig/strictest':
specifier: 2.0.6 specifier: 2.0.8
version: 2.0.6 version: 2.0.8
'@types/eslint-config-prettier': '@types/eslint-config-prettier':
specifier: 6.11.3 specifier: 6.11.3
version: 6.11.3 version: 6.11.3
@ -530,8 +530,8 @@ packages:
'@tsconfig/node20@20.1.8': '@tsconfig/node20@20.1.8':
resolution: {integrity: sha512-Em+IdPfByIzWRRpqWL4Z7ArLHZGxmc36BxE3jCz9nBFSm+5aLaPMZyjwu4yetvyKXeogWcxik4L1jB5JTWfw7A==} resolution: {integrity: sha512-Em+IdPfByIzWRRpqWL4Z7ArLHZGxmc36BxE3jCz9nBFSm+5aLaPMZyjwu4yetvyKXeogWcxik4L1jB5JTWfw7A==}
'@tsconfig/strictest@2.0.6': '@tsconfig/strictest@2.0.8':
resolution: {integrity: sha512-tPOhmDhIUcDjvpDDYyiUdssP84Eqm7n5KxJe5J3/g+s6xoDIPAf+SIn06dhw7VkhxIvLOnhDDrX7tsqMHNEhDg==} resolution: {integrity: sha512-XnQ7vNz5HRN0r88GYf1J9JJjqtZPiHt2woGJOo2dYqyHGGcd6OLGqSlBB6p1j9mpzja6Oe5BoPqWmeDx6X9rLw==}
'@types/conventional-commits-parser@5.0.2': '@types/conventional-commits-parser@5.0.2':
resolution: {integrity: sha512-BgT2szDXnVypgpNxOK8aL5SGjUdaQbC++WZNjF1Qge3Og2+zhHj+RWhmehLhYyvQwqAmvezruVfOf8+3m74W+g==} resolution: {integrity: sha512-BgT2szDXnVypgpNxOK8aL5SGjUdaQbC++WZNjF1Qge3Og2+zhHj+RWhmehLhYyvQwqAmvezruVfOf8+3m74W+g==}
@ -2716,7 +2716,7 @@ snapshots:
'@tsconfig/node20@20.1.8': {} '@tsconfig/node20@20.1.8': {}
'@tsconfig/strictest@2.0.6': {} '@tsconfig/strictest@2.0.8': {}
'@types/conventional-commits-parser@5.0.2': '@types/conventional-commits-parser@5.0.2':
dependencies: dependencies:

View file

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