Skip to content

Commit

Permalink
Fixed breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Simko committed Dec 1, 2022
1 parent 3319d27 commit 19ed3e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const core = require('@actions/core');
const { GitHub, context } = require('@actions/github');
const github = require('@actions/github');
const context = github.context;
async function run() {

try {
Expand All @@ -21,7 +22,7 @@ async function run() {
}


const octokit = new GitHub(GITHUB_TOKEN);
const octokit = github.getOctokit(GITHUB_TOKEN);
let ref;
try {

Expand Down

0 comments on commit 19ed3e8

Please sign in to comment.