mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-17 01:12:35 +00:00
chore: prepare for prettier v3 (#818)
This commit is contained in:
parent
316f92f1df
commit
bd7200cde8
3 changed files with 10 additions and 9 deletions
|
|
@ -28,14 +28,14 @@ class Renovate {
|
|||
const mountPath = path.join(this.configFileMountDir, baseName);
|
||||
dockerArguments.push(
|
||||
`--env ${configurationFile.key}=${mountPath}`,
|
||||
`--volume ${configurationFile.value}:${mountPath}`
|
||||
`--volume ${configurationFile.value}:${mountPath}`,
|
||||
);
|
||||
}
|
||||
|
||||
if (this.input.mountDockerSocket()) {
|
||||
dockerArguments.push(
|
||||
'--volume /var/run/docker.sock:/var/run/docker.sock',
|
||||
`--group-add ${this.getDockerGroupId()}`
|
||||
`--group-add ${this.getDockerGroupId()}`,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
@ -109,7 +109,7 @@ class Renovate {
|
|||
!fs.statSync(configurationFile.value).isFile())
|
||||
) {
|
||||
throw new Error(
|
||||
`configuration file '${configurationFile.value}' MUST be an existing file`
|
||||
`configuration file '${configurationFile.value}' MUST be an existing file`,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue