fix: Commit 2 - Fully fix javascript:S7772

Commit 2 of SonarQube suggestions

Fully fixed issues:
- [javascript:S7772] AZ3Pp_V9hKtKf9aAx2tt: Prefer `node:fs` over `fs`.
- [javascript:S7772] AZ3Pp_V9hKtKf9aAx2tu: Prefer `node:os` over `os`.
- [javascript:S7772] AZ3Pp_V9hKtKf9aAx2tv: Prefer `node:path` over `path`.

Generated by SonarQube Agent
This commit is contained in:
sonarqube-agent[bot] 2026-04-27 16:10:56 +00:00 committed by GitHub
parent 0f96a5d595
commit 4b3833c060
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,9 +20,9 @@
import * as core from "@actions/core";
import * as exec from "@actions/exec";
import * as fs from "fs";
import * as os from "os";
import * as path from "path";
import * as fs from "node:fs";
import * as os from "node:os";
import * as path from "node:path";
// SonarSource public key fingerprint for verifying scanner signatures
const SONARSOURCE_KEY_FINGERPRINT = "679F1EE92B19609DE816FDE81DB198F93525EC1A";