File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ inputs:
15
15
outputs :
16
16
upgrades : # id of output
17
17
description : ' The packages@versions that were updated'
18
- upgrade-count :
18
+ upgradecount :
19
19
description : ' The number of packages that were updated'
20
- upgrade-strategy :
20
+ upgradestrategy :
21
21
description : ' A description of the strategy used either a) latest or b) matching semver range'
22
22
runs :
23
23
using : ' docker'
Original file line number Diff line number Diff line change @@ -55,5 +55,5 @@ const upgrades = changed
55
55
56
56
childProcess . execSync ( `git status` , { stdio : "inherit" } ) ;
57
57
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' } ` ) ;
You can’t perform that action at this time.
0 commit comments