Skip to content

Commit

Permalink
v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBowdoin authored Oct 13, 2020
1 parent a868430 commit 8d20184
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ async function run() {
const { full_name: repoFullName } = repository;
const [owner, repo] = repoFullName.split("/");

const octokit = new github.GitHub(inputs.token);
const octokit = new github.getOctokit(inputs.token);

const data = fs.readFileSync(`${process.env.GITHUB_WORKSPACE}/${inputs.path}`, 'utf8');
const json = JSON.parse(data);
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function run() {
const { full_name: repoFullName } = repository;
const [owner, repo] = repoFullName.split("/");

const octokit = new github.GitHub(inputs.token);
const octokit = new github.getOctokit(inputs.token);

const data = fs.readFileSync(`${process.env.GITHUB_WORKSPACE}/${inputs.path}`, 'utf8');
const json = JSON.parse(data);
Expand Down
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
{
"name": "output-test-coverage",
"version": "1.0.2",
"version": "1.2.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 8d20184

Please sign in to comment.