Merge pull request #442 from gradle/dependabot/npm_and_yarn/actions/github-5.1.0

Bump @actions/github from 5.0.3 to 5.1.0
This commit is contained in:
Daz DeBoer 2022-09-27 07:52:55 -06:00 committed by GitHub
commit d92395703c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 16 additions and 14 deletions

5
dist/main/index.js vendored
View file

@ -4799,8 +4799,9 @@ exports.context = new Context.Context();
* @param token the repo PAT or GITHUB_TOKEN * @param token the repo PAT or GITHUB_TOKEN
* @param options other options to set * @param options other options to set
*/ */
function getOctokit(token, options) { function getOctokit(token, options, ...additionalPlugins) {
return new utils_1.GitHub(utils_1.getOctokitOptions(token, options)); const GitHubWithPlugins = utils_1.GitHub.plugin(...additionalPlugins);
return new GitHubWithPlugins(utils_1.getOctokitOptions(token, options));
} }
exports.getOctokit = getOctokit; exports.getOctokit = getOctokit;
//# sourceMappingURL=github.js.map //# sourceMappingURL=github.js.map

File diff suppressed because one or more lines are too long

5
dist/post/index.js vendored
View file

@ -4799,8 +4799,9 @@ exports.context = new Context.Context();
* @param token the repo PAT or GITHUB_TOKEN * @param token the repo PAT or GITHUB_TOKEN
* @param options other options to set * @param options other options to set
*/ */
function getOctokit(token, options) { function getOctokit(token, options, ...additionalPlugins) {
return new utils_1.GitHub(utils_1.getOctokitOptions(token, options)); const GitHubWithPlugins = utils_1.GitHub.plugin(...additionalPlugins);
return new GitHubWithPlugins(utils_1.getOctokitOptions(token, options));
} }
exports.getOctokit = getOctokit; exports.getOctokit = getOctokit;
//# sourceMappingURL=github.js.map //# sourceMappingURL=github.js.map

File diff suppressed because one or more lines are too long

14
package-lock.json generated
View file

@ -13,7 +13,7 @@
"@actions/cache": "3.0.4", "@actions/cache": "3.0.4",
"@actions/core": "1.9.1", "@actions/core": "1.9.1",
"@actions/exec": "1.1.1", "@actions/exec": "1.1.1",
"@actions/github": "5.0.3", "@actions/github": "5.1.0",
"@actions/glob": "0.3.0", "@actions/glob": "0.3.0",
"@actions/http-client": "2.0.1", "@actions/http-client": "2.0.1",
"@actions/tool-cache": "2.0.1", "@actions/tool-cache": "2.0.1",
@ -87,9 +87,9 @@
} }
}, },
"node_modules/@actions/github": { "node_modules/@actions/github": {
"version": "5.0.3", "version": "5.1.0",
"resolved": "https://registry.npmjs.org/@actions/github/-/github-5.0.3.tgz", "resolved": "https://registry.npmjs.org/@actions/github/-/github-5.1.0.tgz",
"integrity": "sha512-myjA/pdLQfhUGLtRZC/J4L1RXOG4o6aYdiEq+zr5wVVKljzbFld+xv10k1FX6IkIJtNxbAq44BdwSNpQ015P0A==", "integrity": "sha512-tuI80F7JQIhg77ZTTgUAPpVD7ZnP9oHSPN8xw7LOwtA4vEMbAjWJNbmLBfV7xua7r016GyjzWLuec5cs8f/a8A==",
"dependencies": { "dependencies": {
"@actions/http-client": "^2.0.1", "@actions/http-client": "^2.0.1",
"@octokit/core": "^3.6.0", "@octokit/core": "^3.6.0",
@ -7007,9 +7007,9 @@
} }
}, },
"@actions/github": { "@actions/github": {
"version": "5.0.3", "version": "5.1.0",
"resolved": "https://registry.npmjs.org/@actions/github/-/github-5.0.3.tgz", "resolved": "https://registry.npmjs.org/@actions/github/-/github-5.1.0.tgz",
"integrity": "sha512-myjA/pdLQfhUGLtRZC/J4L1RXOG4o6aYdiEq+zr5wVVKljzbFld+xv10k1FX6IkIJtNxbAq44BdwSNpQ015P0A==", "integrity": "sha512-tuI80F7JQIhg77ZTTgUAPpVD7ZnP9oHSPN8xw7LOwtA4vEMbAjWJNbmLBfV7xua7r016GyjzWLuec5cs8f/a8A==",
"requires": { "requires": {
"@actions/http-client": "^2.0.1", "@actions/http-client": "^2.0.1",
"@octokit/core": "^3.6.0", "@octokit/core": "^3.6.0",

View file

@ -29,7 +29,7 @@
"@actions/cache": "3.0.4", "@actions/cache": "3.0.4",
"@actions/core": "1.9.1", "@actions/core": "1.9.1",
"@actions/exec": "1.1.1", "@actions/exec": "1.1.1",
"@actions/github": "5.0.3", "@actions/github": "5.1.0",
"@actions/glob": "0.3.0", "@actions/glob": "0.3.0",
"@actions/http-client": "2.0.1", "@actions/http-client": "2.0.1",
"@actions/tool-cache": "2.0.1", "@actions/tool-cache": "2.0.1",