Skip to content

Commit

Permalink
fix(deps): bump @actions/github from 5.0.3 to 5.1.0 (#669)
Browse files Browse the repository at this point in the history
Bumps [@actions/github](https://github.com/actions/toolkit/tree/HEAD/packages/github) from 5.0.3 to 5.1.0.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/github/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/github)

---
updated-dependencies:
- dependency-name: "@actions/github"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ybiquitous <ybiquitous@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and ybiquitous authored Sep 27, 2022
1 parent fd58fd8 commit 5ee3539
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions dist/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9571,8 +9571,9 @@ var require_github = __commonJS({
var Context = __importStar(require_context());
var utils_1 = require_utils4();
exports.context = new Context.Context();
function getOctokit3(token, options) {
return new utils_1.GitHub(utils_1.getOctokitOptions(token, options));
function getOctokit3(token, options, ...additionalPlugins) {
const GitHubWithPlugins = utils_1.GitHub.plugin(...additionalPlugins);
return new GitHubWithPlugins(utils_1.getOctokitOptions(token, options));
}
exports.getOctokit = getOctokit3;
}
Expand Down
14 changes: 7 additions & 7 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 @@ -45,7 +45,7 @@
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@actions/github": "^5.1.0",
"hosted-git-info": "^5.1.0"
},
"devDependencies": {
Expand Down

0 comments on commit 5ee3539

Please sign in to comment.