Skip to content

Commit

Permalink
fixed issue with actions exec function
Browse files Browse the repository at this point in the history
  • Loading branch information
srinivas-jay committed Jul 23, 2023
1 parent 14c15a0 commit d6d7a09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40255,7 +40255,7 @@ var __webpack_exports__ = {};
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
(() => {
const { Octokit } = __nccwpck_require__(5375);
const { exec } = __nccwpck_require__(1514);
const exec = __nccwpck_require__(1514);
const git = __nccwpck_require__(9103);
const core = __nccwpck_require__(2186);
const github = __nccwpck_require__(5438);
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { Octokit } = require('@octokit/rest');
const { exec } = require('@actions/exec');
const exec = require('@actions/exec');
const git = require('simple-git');
const core = require('@actions/core');
const github = require('@actions/github');
Expand Down

0 comments on commit d6d7a09

Please sign in to comment.