mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2026-05-22 18:05:57 +00:00
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:
parent
0f96a5d595
commit
4b3833c060
1 changed files with 3 additions and 3 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue