Skip to content

Commit

Permalink
Dependencies bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
manchicken committed Mar 15, 2023
1 parent 8a19327 commit a135ab6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 21 deletions.
4 changes: 3 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26345,7 +26345,9 @@ function fetch(url, opts) {
return;
}

destroyStream(response.body, err);
if (response && response.body) {
destroyStream(response.body, err);
}
});

/* c8 ignore next 18 */
Expand Down
32 changes: 16 additions & 16 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/http-client": "^2.0.1",
"@actions/http-client": "^2.1.0",
"@octokit/rest": "^19.0.7",
"lodash": "^4.17.21",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/jest": "^29.4.3",
"@vercel/ncc": "^0.36.1",
"ajv": "^8.12.0",
"jest": "^29.4.1",
"prettier": "^2.8.3"
"jest": "^29.5.0",
"prettier": "^2.8.4"
}
}

0 comments on commit a135ab6

Please sign in to comment.