mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-05-12 11:59:55 +02:00
Deep require is deprecated for uuid and use another syntax instead
This commit is contained in:
parent
ddbca14adb
commit
36ce21c4a4
2 changed files with 4 additions and 5 deletions
|
@ -3,13 +3,12 @@ import * as io from "@actions/io";
|
|||
import { promises as fs } from "fs";
|
||||
import * as os from "os";
|
||||
import * as path from "path";
|
||||
import { v4 as uuidv4 } from "uuid";
|
||||
|
||||
import { Events, Outputs, State } from "../src/constants";
|
||||
import { ArtifactCacheEntry } from "../src/contracts";
|
||||
import * as actionUtils from "../src/utils/actionUtils";
|
||||
|
||||
import uuid = require("uuid");
|
||||
|
||||
jest.mock("@actions/core");
|
||||
jest.mock("os");
|
||||
|
||||
|
@ -226,7 +225,7 @@ test("resolvePaths with no ~ in path", async () => {
|
|||
});
|
||||
|
||||
test("resolvePaths with ~ in path", async () => {
|
||||
const cacheDir = uuid();
|
||||
const cacheDir = uuidv4();
|
||||
const filePath = `~/${cacheDir}`;
|
||||
// Create the following layout:
|
||||
// ~/uuid
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue