Skip to content

Commit 602fa69

Browse files
chore(upgrade.js): remove dashes from output variable names?
1 parent 4b196ba commit 602fa69

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

actions/upgrade/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ inputs:
1515
outputs:
1616
upgrades: # id of output
1717
description: 'The packages@versions that were updated'
18-
upgrade-count:
18+
upgradecount:
1919
description: 'The number of packages that were updated'
20-
upgrade-strategy:
20+
upgradestrategy:
2121
description: 'A description of the strategy used either a) latest or b) matching semver range'
2222
runs:
2323
using: 'docker'

actions/upgrade/upgrade.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ const upgrades = changed
5555

5656
childProcess.execSync(`git status`, { stdio: "inherit" });
5757
console.log(`::set-output name=upgrades::${upgrades}`);
58-
console.log(`::set-output name=upgrade-count::${changed.length}`);
59-
console.log(`::set-output name=upgrade-strategy::${process.env.INPUT_LATEST === 'true' ? 'matching semver range' : 'latest'}`);
58+
console.log(`::set-output name=upgradecount::${changed.length}`);
59+
console.log(`::set-output name=upgradestrategy::${process.env.INPUT_LATEST === 'true' ? 'matching semver range' : 'latest'}`);

0 commit comments

Comments
 (0)