mirror of
https://github.com/actions/setup-python.git
synced 2025-04-19 19:33:29 +00:00
add comment
This commit is contained in:
parent
f6472d80c5
commit
3c6f937a39
3
dist/cache-save/index.js
vendored
3
dist/cache-save/index.js
vendored
@ -80467,6 +80467,9 @@ const core = __importStar(__nccwpck_require__(2186));
|
|||||||
const cache = __importStar(__nccwpck_require__(7799));
|
const cache = __importStar(__nccwpck_require__(7799));
|
||||||
const fs_1 = __importDefault(__nccwpck_require__(7147));
|
const fs_1 = __importDefault(__nccwpck_require__(7147));
|
||||||
const cache_distributor_1 = __nccwpck_require__(8953);
|
const cache_distributor_1 = __nccwpck_require__(8953);
|
||||||
|
// Added early exit to resolve issue with slow post action step:
|
||||||
|
// - https://github.com/actions/setup-node/issues/878
|
||||||
|
// https://github.com/actions/cache/pull/1217
|
||||||
function run(earlyExit) {
|
function run(earlyExit) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
try {
|
try {
|
||||||
|
@ -4,6 +4,9 @@ import * as cache from '@actions/cache';
|
|||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import {State} from './cache-distributions/cache-distributor';
|
import {State} from './cache-distributions/cache-distributor';
|
||||||
|
|
||||||
|
// Added early exit to resolve issue with slow post action step:
|
||||||
|
// - https://github.com/actions/setup-node/issues/878
|
||||||
|
// https://github.com/actions/cache/pull/1217
|
||||||
export async function run(earlyExit?: boolean) {
|
export async function run(earlyExit?: boolean) {
|
||||||
try {
|
try {
|
||||||
const cache = core.getInput('cache');
|
const cache = core.getInput('cache');
|
||||||
|
Loading…
Reference in New Issue
Block a user