Skip to content

Commit b22499e

Browse files
committed
fix: fs/promises not found
1 parent c12efcc commit b22499e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const core = require("@actions/core");
22
const path = require("path");
33
const axios = require("axios");
44
const os = require("os");
5-
const fs = require("fs/promises");
5+
const fs = require("fs").promises;
66

77
const getAbsolutePath = (filePath) => {
88
if (filePath[0] !== "~") return path.resolve(filePath);

0 commit comments

Comments
 (0)