1
0
Fork 0

Change `var` to `const`

pull/842/head
RA80533 2021-06-12 00:10:53 -04:00 committed by GitHub
parent 11601c0d2d
commit 1dbb807904
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ In action's `cleanup.js`:
```js ```js
const core = require('@actions/core'); const core = require('@actions/core');
var pid = core.getState("pidToKill"); const pid = core.getState("pidToKill");
process.kill(pid); process.kill(pid);
``` ```