Skip to content

Commit

Permalink
Fix missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Jan 25, 2022
1 parent 5b9ee86 commit 8e10fd7
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 @@ -12157,7 +12157,7 @@ const core = __nccwpck_require__(2186)
const tc = __nccwpck_require__(7784)
const github = __nccwpck_require__(5438)
const path = __nccwpck_require__(1017)
const { getDownloadObject } = __nccwpck_require__(1608)
const { getDownloadObject, getVersion } = __nccwpck_require__(1608)

async function setup() {
try {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const core = require('@actions/core')
const tc = require('@actions/tool-cache')
const github = require('@actions/github')
const path = require('path')
const { getDownloadObject } = require('./utils')
const { getDownloadObject, getVersion } = require('./utils')

async function setup() {
try {
Expand Down

0 comments on commit 8e10fd7

Please sign in to comment.