diff --git a/dist/setup/index.js b/dist/setup/index.js index 7b96d7c..e6f56e1 100644 Binary files a/dist/setup/index.js and b/dist/setup/index.js differ diff --git a/dist/update-known-checksums/index.js b/dist/update-known-checksums/index.js index fda9519..78be2fd 100644 Binary files a/dist/update-known-checksums/index.js and b/dist/update-known-checksums/index.js differ diff --git a/src/download/download-latest.ts b/src/download/download-latest.ts index 43787ee..f0d923c 100644 --- a/src/download/download-latest.ts +++ b/src/download/download-latest.ts @@ -4,7 +4,7 @@ import * as exec from "@actions/exec"; import * as path from "path"; import { Architecture, Platform } from "../utils/platforms"; import { validateChecksum } from "./checksum/checksum"; -import { OWNER, REPO, TOOL_CACHE_NAME } from "../utils/utils"; +import { OWNER, REPO, TOOL_CACHE_NAME } from "../utils/constants"; export async function downloadLatest( platform: Platform, diff --git a/src/download/download-version.ts b/src/download/download-version.ts index 977934c..8c938fe 100644 --- a/src/download/download-version.ts +++ b/src/download/download-version.ts @@ -1,7 +1,7 @@ import * as core from "@actions/core"; import * as tc from "@actions/tool-cache"; import * as path from "path"; -import { OWNER, REPO, TOOL_CACHE_NAME } from "../utils/utils"; +import { OWNER, REPO, TOOL_CACHE_NAME } from "../utils/constants"; import { Architecture, Platform } from "../utils/platforms"; import { validateChecksum } from "./checksum/checksum"; diff --git a/src/update-known-checksums.ts b/src/update-known-checksums.ts index 9a79e26..43939de 100644 --- a/src/update-known-checksums.ts +++ b/src/update-known-checksums.ts @@ -1,7 +1,7 @@ import * as github from "@actions/github"; import * as core from "@actions/core"; -import { OWNER, REPO } from "./utils/utils"; +import { OWNER, REPO } from "./utils/constants"; import * as semver from "semver"; import { updateChecksums } from "./download/checksum/update-known-checksums"; diff --git a/src/utils/utils.ts b/src/utils/constants.ts similarity index 100% rename from src/utils/utils.ts rename to src/utils/constants.ts