From 4b3833c0606c3f8030a7d9bb93107a3826b5dad2 Mon Sep 17 00:00:00 2001 From: "sonarqube-agent[bot]" <210722872+sonarqube-agent[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 16:10:56 +0000 Subject: [PATCH] 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 --- src/main/gpg-verification.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/gpg-verification.js b/src/main/gpg-verification.js index a83ac14..045d370 100644 --- a/src/main/gpg-verification.js +++ b/src/main/gpg-verification.js @@ -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";