Skip to content

Commit 8a1a5a1

Browse files
committed
fix const assignment
1 parent 7b8890e commit 8a1a5a1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70412,7 +70412,7 @@ const { getDownloadObject } = __nccwpck_require__(5804);
7041270412
async function main() {
7041370413
try {
7041470414
// Get version input
70415-
const version = core.getInput("version");
70415+
let version = core.getInput("version");
7041670416

7041770417
if (version === "stable") {
7041870418
const response = await fetch(

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const { getDownloadObject } = require("./utils");
88
async function main() {
99
try {
1010
// Get version input
11-
const version = core.getInput("version");
11+
let version = core.getInput("version");
1212

1313
if (version === "stable") {
1414
const response = await fetch(

0 commit comments

Comments
 (0)