Skip to content

Commit

Permalink
fix(deps): bump hosted-git-info from 3.0.4 to 3.0.5 (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jul 14, 2020
1 parent e47d56f commit 573c38a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8633,7 +8633,7 @@ Yallist.prototype.sliceReverse = function (from, to) {
return ret
}

Yallist.prototype.splice = function (start, deleteCount /*, ...nodes */) {
Yallist.prototype.splice = function (start, deleteCount, ...nodes) {
if (start > this.length) {
start = this.length - 1
}
Expand All @@ -8658,8 +8658,8 @@ Yallist.prototype.splice = function (start, deleteCount /*, ...nodes */) {
walker = walker.prev
}

for (var i = 2; i < arguments.length; i++) {
walker = insert(this, walker, arguments[i])
for (var i = 0; i < nodes.length; i++) {
walker = insert(this, walker, nodes[i])
}
return ret;
}
Expand Down
22 changes: 11 additions & 11 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"hosted-git-info": "^3.0.4"
"hosted-git-info": "^3.0.5"
},
"devDependencies": {
"@types/hosted-git-info": "^3.0.0",
Expand Down

0 comments on commit 573c38a

Please sign in to comment.