Skip to content

Commit

Permalink
Bump the octokit-dependencies group with 2 updates (#756)
Browse files Browse the repository at this point in the history
* Bump the octokit-dependencies group with 2 updates

Bumps the octokit-dependencies group with 2 updates: [@octokit/core](https://github.com/octokit/core.js) and [@octokit/graphql-schema](https://github.com/octokit/graphql-schema).


Updates `@octokit/core` from 6.1.1 to 6.1.2
- [Release notes](https://github.com/octokit/core.js/releases)
- [Commits](octokit/core.js@v6.1.1...v6.1.2)

Updates `@octokit/graphql-schema` from 15.5.0 to 15.6.0
- [Release notes](https://github.com/octokit/graphql-schema/releases)
- [Commits](octokit/graphql-schema@v15.5.0...v15.6.0)

---
updated-dependencies:
- dependency-name: "@octokit/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: octokit-dependencies
- dependency-name: "@octokit/graphql-schema"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: octokit-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* `makers setup && makers check`

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kenichi Kamiya <[email protected]>
  • Loading branch information
dependabot[bot] and kachick authored Apr 12, 2024
1 parent 580d9f5 commit 03c3fb3
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 46 deletions.
22 changes: 12 additions & 10 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19889,9 +19889,9 @@ var require_dist_node4 = __commonJS({
}
});

// node_modules/.pnpm/@octokit+request@8.3.1/node_modules/@octokit/request/dist-node/index.js
// node_modules/.pnpm/@octokit+request@8.4.0/node_modules/@octokit/request/dist-node/index.js
var require_dist_node5 = __commonJS({
"node_modules/.pnpm/@octokit+request@8.3.1/node_modules/@octokit/request/dist-node/index.js"(exports, module) {
"node_modules/.pnpm/@octokit+request@8.4.0/node_modules/@octokit/request/dist-node/index.js"(exports, module) {
"use strict";
var __defProp2 = Object.defineProperty;
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
Expand All @@ -19917,7 +19917,7 @@ var require_dist_node5 = __commonJS({
module.exports = __toCommonJS2(dist_src_exports);
var import_endpoint2 = require_dist_node2();
var import_universal_user_agent5 = require_dist_node();
var VERSION5 = "8.3.1";
var VERSION5 = "8.4.0";
function isPlainObject3(value) {
if (typeof value !== "object" || value === null)
return false;
Expand All @@ -19934,7 +19934,7 @@ var require_dist_node5 = __commonJS({
return response.arrayBuffer();
}
function fetchWrapper2(requestOptions) {
var _a, _b, _c;
var _a, _b, _c, _d;
const log = requestOptions.request && requestOptions.request.log ? requestOptions.request.log : console;
const parseSuccessResponseBody = ((_a = requestOptions.request) == null ? void 0 : _a.parseSuccessResponseBody) !== false;
if (isPlainObject3(requestOptions.body) || Array.isArray(requestOptions.body)) {
Expand All @@ -19955,8 +19955,9 @@ var require_dist_node5 = __commonJS({
return fetch(requestOptions.url, {
method: requestOptions.method,
body: requestOptions.body,
redirect: (_c = requestOptions.request) == null ? void 0 : _c.redirect,
headers: requestOptions.headers,
signal: (_c = requestOptions.request) == null ? void 0 : _c.signal,
signal: (_d = requestOptions.request) == null ? void 0 : _d.signal,
// duplex must be set if request.body is ReadableStream or Async Iterables.
// See https://fetch.spec.whatwg.org/#dom-requestinit-duplex.
...requestOptions.body && { duplex: "half" }
Expand Down Expand Up @@ -23779,7 +23780,7 @@ var RequestError = class extends Error {
}
};

// node_modules/.pnpm/@octokit+request@9.0.1/node_modules/@octokit/request/dist-bundle/index.js
// node_modules/.pnpm/@octokit+request@9.1.0/node_modules/@octokit/request/dist-bundle/index.js
var VERSION2 = "0.0.0-development";
function isPlainObject2(value) {
if (typeof value !== "object" || value === null)
Expand Down Expand Up @@ -23816,6 +23817,7 @@ function fetchWrapper(requestOptions) {
return fetch(requestOptions.url, {
method: requestOptions.method,
body: requestOptions.body,
redirect: requestOptions.request?.redirect,
// Header values must be `string`
headers: Object.fromEntries(
Object.entries(requestOptions.headers).map(([name, value]) => [
Expand Down Expand Up @@ -24114,10 +24116,10 @@ var createTokenAuth = function createTokenAuth2(token) {
});
};

// node_modules/.pnpm/@[email protected].1/node_modules/@octokit/core/dist-src/version.js
var VERSION4 = "6.1.1";
// node_modules/.pnpm/@[email protected].2/node_modules/@octokit/core/dist-src/version.js
var VERSION4 = "6.1.2";

// node_modules/.pnpm/@[email protected].1/node_modules/@octokit/core/dist-src/index.js
// node_modules/.pnpm/@[email protected].2/node_modules/@octokit/core/dist-src/index.js
var noop = () => {
};
var consoleWarn = console.warn.bind(console);
Expand Down Expand Up @@ -24244,7 +24246,7 @@ var Octokit = class {
auth;
};

// node_modules/.pnpm/@[email protected]_@[email protected].1/node_modules/@octokit/plugin-paginate-graphql/dist-bundle/index.js
// node_modules/.pnpm/@[email protected]_@[email protected].2/node_modules/@octokit/plugin-paginate-graphql/dist-bundle/index.js
var generateMessage = (path, cursorValue) => `The cursor at "${path.join(
","
)}" did not change its value "${cursorValue}" after a page transition. Please make sure your that your query is set up correctly.`;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/core": "^6.1.1",
"@octokit/graphql-schema": "^15.5.0",
"@octokit/core": "^6.1.2",
"@octokit/graphql-schema": "^15.6.0",
"@octokit/plugin-paginate-graphql": "^5.2.0",
"ansi-styles": "^6.2.1",
"zod": "^3.22.4"
Expand Down
68 changes: 34 additions & 34 deletions pnpm-lock.yaml

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

0 comments on commit 03c3fb3

Please sign in to comment.