diff --git a/action.yml b/action.yml index 78105f1..5ef2971 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,4 @@ -name: Verified commit +name: Verified commit modBy Yui-KITAMURA description: GitHub Action to create verified commits inputs: files: @@ -23,7 +23,7 @@ outputs: commit-sha: description: SHA of created commit runs: - using: node12 + using: node16 main: dist/index.js branding: icon: git-commit diff --git a/dist/index.js b/dist/index.js index 6f60dda..f105d8b 100644 --- a/dist/index.js +++ b/dist/index.js @@ -3660,7 +3660,7 @@ function wrap(protocols) { // Default settings var exports = { maxRedirects: 21, - maxBodyLength: 10 * 1024 * 1024, + maxBodyLength: 100 * 1024 * 1024, }; // Wrap each protocol diff --git a/lib/commit.ts b/lib/commit.ts index 9dac567..59097a3 100644 --- a/lib/commit.ts +++ b/lib/commit.ts @@ -25,7 +25,7 @@ export class Commit extends Resource { message: this.message, tree: this.tree.sha, parents: this.parents, - } + }, ); this.sha = response.data.sha; diff --git a/lib/github-client.ts b/lib/github-client.ts index 89b4458..2f96e05 100644 --- a/lib/github-client.ts +++ b/lib/github-client.ts @@ -10,6 +10,8 @@ const github = axios.create({ authorization: `bearer ${process.env.GH_TOKEN}`, "user-agent": `${pkg.name}/${pkg.version}`, }, + maxBodyLength: 100000000, //100MB GitHub FileSizeLimit + maxContentLength: 100000000, }); export default github; diff --git a/lib/tree.ts b/lib/tree.ts index b3b1046..24d284e 100644 --- a/lib/tree.ts +++ b/lib/tree.ts @@ -18,6 +18,7 @@ export class Tree extends Resource { // Save all the blobs for await (const blob of this.blobs) { await blob.save(); + this.debug(String(blob.stream.readableLength)); } // Save the tree @@ -34,7 +35,11 @@ export class Tree extends Resource { }; }), base_tree: this.parentOid, - } + }, + { + maxBodyLength: 100000000, //100MB GitHub FileSizeLimit + maxContentLength: 100000000, + } ); this.sha = response.data.sha;