Skip to content

Commit

Permalink
upgraded @actions/core, @actions/exec
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmerwin committed May 1, 2020
1 parent ffa0792 commit 71e3fb4
Show file tree
Hide file tree
Showing 17 changed files with 134 additions and 78 deletions.
3 changes: 2 additions & 1 deletion lib/run.spec.js
Expand Up @@ -24,7 +24,8 @@ describe('Run', () => {
const setup = () => {
getInput = sandbox.stub(core, 'getInput');
getInput.withArgs('github-token').returns('v1.asdf');
process.env.GITHUB_RUN_NUMBER = "1234";
const flagName = 'flag';
getInput.withArgs('flag-name').returns(flagName);
process.env.GITHUB_RUN_ID = "1234567";
process.env.GITHUB_SHA = "asdfasdf";
process.env.GITHUB_REF = "master";
Expand Down
9 changes: 7 additions & 2 deletions node_modules/@actions/core/lib/command.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 16 additions & 2 deletions node_modules/@actions/core/lib/command.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node_modules/@actions/core/lib/command.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 17 additions & 11 deletions node_modules/@actions/core/lib/core.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 22 additions & 9 deletions node_modules/@actions/core/lib/core.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node_modules/@actions/core/lib/core.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 13 additions & 16 deletions node_modules/@actions/core/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions node_modules/@actions/exec/lib/exec.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 71e3fb4

Please sign in to comment.