Skip to content

Commit

Permalink
Use --forge-* instead of --vcs-* options
Browse files Browse the repository at this point in the history
The `--vcs-*` options have been replaced with `--forge-*` in
scala-steward-org/scala-steward#2916.
  • Loading branch information
fthomas committed Dec 9, 2023
1 parent c8fc610 commit e78cd70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/action/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ async function run(): Promise<void> {
arg('--git-ask-pass', workspace.askpass_sh),
arg('--git-author-email', inputs.commits.author.email ?? user.email()),
arg('--git-author-name', inputs.commits.author.name ?? user.name()),
arg('--vcs-login', user.login()),
arg('--forge-login', user.login()),
arg('--env-var', nonEmpty('"SBT_OPTS=-Xmx2048m -Xss8m -XX:MaxMetaspaceSize=512m"')),
arg('--process-timeout', inputs.steward.timeout),
arg('--vcs-api-host', inputs.github.apiUrl),
arg('--forge-api-host', inputs.github.apiUrl),
arg('--ignore-opts-files', inputs.steward.ignoreOptsFiles),
arg('--sign-commits', inputs.commits.sign.enabled),
arg('--git-author-signing-key', inputs.commits.sign.key),
Expand Down

0 comments on commit e78cd70

Please sign in to comment.