Skip to content

Commit 9bae12f

Browse files
committed
chore: use node:fs builtin import in bump-plan step
1 parent 1e5544e commit 9bae12f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pull-request-snapshot-diff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
npx changeset status --since=origin/main --output=json > .changeset-status.json || true
158158
# Parse JSON and emit HAS_MINOR/HAS_MAJOR to a temp env file
159159
node > .changeset-env <<'NODE'
160-
const fs = require('fs');
160+
const fs = require('node:fs');
161161
let hasMinor = 0, hasMajor = 0;
162162
try {
163163
const txt = fs.readFileSync('.changeset-status.json','utf8').trim();

0 commit comments

Comments
 (0)