Skip to content

Commit

Permalink
chore: use "node:" prefixed module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
outloudvi committed Jan 26, 2024
1 parent e0dda49 commit 55a9ac4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const core = require("@actions/core");
const fs = require("fs");
const path = require("path");
const { Buffer } = require("buffer");
const fs = require("node:fs");
const path = require("node:path");
const { Buffer } = require("node:buffer");

function getFilenameFromUrl(url) {
const u = new URL(url);
Expand Down

0 comments on commit 55a9ac4

Please sign in to comment.