Updating node_modules

This commit is contained in:
Chris Raynor 2020-10-03 12:55:40 +01:00
parent 4290eabf33
commit f49e963057
No known key found for this signature in database
GPG key ID: 579A1FBC36FDA261
15 changed files with 192 additions and 51 deletions

View file

@ -82,7 +82,14 @@ try {
core.warning('myInput was not set');
}
if (core.isDebug()) {
// curl -v https://github.com
} else {
// curl https://github.com
}
// Do stuff
core.info('Output to the actions build log')
}
catch (err) {
core.error(`Error ${err}, action may still succeed though`);
@ -137,4 +144,4 @@ const core = require('@actions/core');
var pid = core.getState("pidToKill");
process.kill(pid);
```
```