diff --git a/dist/save-cache/index.js b/dist/save-cache/index.js index 68618eb..1f9c31d 100644 --- a/dist/save-cache/index.js +++ b/dist/save-cache/index.js @@ -91671,6 +91671,7 @@ const exec = __importStar(__nccwpck_require__(5236)); const fs = __importStar(__nccwpck_require__(3024)); const restore_cache_1 = __nccwpck_require__(5391); const inputs_1 = __nccwpck_require__(9612); +const constants_1 = __nccwpck_require__(6156); async function run() { try { if (inputs_1.enableCache) { @@ -91722,8 +91723,10 @@ async function saveCache() { } } async function pruneCache() { + const uvDir = core.getState(constants_1.STATE_CACHED_UV_DIR); const options = { - silent: !core.isDebug(), + silent: false, + env: { PATH: uvDir }, }; const execArgs = ["cache", "prune", "--ci"]; core.info("Pruning cache..."); @@ -91732,6 +91735,21 @@ async function pruneCache() { run(); +/***/ }), + +/***/ 6156: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.STATE_CACHED_UV_DIR = exports.TOOL_CACHE_NAME = exports.OWNER = exports.REPO = void 0; +exports.REPO = "uv"; +exports.OWNER = "astral-sh"; +exports.TOOL_CACHE_NAME = "uv"; +exports.STATE_CACHED_UV_DIR = "cached-uv-dir"; + + /***/ }), /***/ 9612: diff --git a/dist/setup/index.js b/dist/setup/index.js index 660f484..eed9e74 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -95331,6 +95331,7 @@ const inputs_1 = __nccwpck_require__(9612); const exec = __importStar(__nccwpck_require__(5236)); const node_fs_1 = __importDefault(__nccwpck_require__(3024)); const pyproject_1 = __nccwpck_require__(3929); +const constants_1 = __nccwpck_require__(6156); async function run() { const platform = (0, platforms_1.getPlatform)(); const arch = (0, platforms_1.getArch)(); @@ -95342,6 +95343,7 @@ async function run() { throw new Error(`Unsupported architecture: ${process.arch}`); } const setupResult = await setupUv(platform, arch, inputs_1.checkSum, inputs_1.githubToken); + core.saveState(constants_1.STATE_CACHED_UV_DIR, setupResult.uvDir); addUvToPath(setupResult.uvDir); addToolBinToPath(); setToolDir(); @@ -95463,10 +95465,11 @@ run(); "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.TOOL_CACHE_NAME = exports.OWNER = exports.REPO = void 0; +exports.STATE_CACHED_UV_DIR = exports.TOOL_CACHE_NAME = exports.OWNER = exports.REPO = void 0; exports.REPO = "uv"; exports.OWNER = "astral-sh"; exports.TOOL_CACHE_NAME = "uv"; +exports.STATE_CACHED_UV_DIR = "cached-uv-dir"; /***/ }), diff --git a/dist/update-known-checksums/index.js b/dist/update-known-checksums/index.js index 55d0ea9..ef07f23 100644 --- a/dist/update-known-checksums/index.js +++ b/dist/update-known-checksums/index.js @@ -30859,10 +30859,11 @@ run(); "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.TOOL_CACHE_NAME = exports.OWNER = exports.REPO = void 0; +exports.STATE_CACHED_UV_DIR = exports.TOOL_CACHE_NAME = exports.OWNER = exports.REPO = void 0; exports.REPO = "uv"; exports.OWNER = "astral-sh"; exports.TOOL_CACHE_NAME = "uv"; +exports.STATE_CACHED_UV_DIR = "cached-uv-dir"; /***/ }), diff --git a/src/save-cache.ts b/src/save-cache.ts index bc2bbf2..3312af2 100644 --- a/src/save-cache.ts +++ b/src/save-cache.ts @@ -12,6 +12,7 @@ import { ignoreNothingToCache, pruneCache as shouldPruneCache, } from "./utils/inputs"; +import { STATE_CACHED_UV_DIR } from "./utils/constants"; export async function run(): Promise { try { @@ -72,8 +73,10 @@ async function saveCache(): Promise { } async function pruneCache(): Promise { + const uvDir = core.getState(STATE_CACHED_UV_DIR); const options: exec.ExecOptions = { - silent: !core.isDebug(), + silent: false, + env: { PATH: uvDir }, }; const execArgs = ["cache", "prune", "--ci"]; diff --git a/src/setup-uv.ts b/src/setup-uv.ts index a7ff66e..bdd6a45 100644 --- a/src/setup-uv.ts +++ b/src/setup-uv.ts @@ -28,6 +28,7 @@ import { import * as exec from "@actions/exec"; import fs from "node:fs"; import { getUvVersionFromConfigFile } from "./utils/pyproject"; +import { STATE_CACHED_UV_DIR } from "./utils/constants"; async function run(): Promise { const platform = getPlatform(); @@ -42,6 +43,7 @@ async function run(): Promise { } const setupResult = await setupUv(platform, arch, checkSum, githubToken); + core.saveState(STATE_CACHED_UV_DIR, setupResult.uvDir); addUvToPath(setupResult.uvDir); addToolBinToPath(); setToolDir(); diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 987ae8a..cd33fdc 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -1,3 +1,4 @@ export const REPO = "uv"; export const OWNER = "astral-sh"; export const TOOL_CACHE_NAME = "uv"; +export const STATE_CACHED_UV_DIR = "cached-uv-dir";