From 2d55d1ccb6cfe63cf916652d928cc982d2a8d78d Mon Sep 17 00:00:00 2001 From: ashnashahgrover Date: Thu, 13 Jun 2024 17:10:20 +0530 Subject: [PATCH] docs(devcontainer): add trivy and its VSCode Extension Primary Changes 1) updated trivy version in the .devcontainer file and included trivy vs-code extension Changes required to incorporate 1) 3) included trivy vs-code extension in the .vscode/extensions.json file Fixes #2650 Signed-off-by: ashnashahgrover --- .devcontainer/devcontainer.json | 5 +++-- .vscode/extensions.json | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f2578c9015..413c197c09 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -41,7 +41,7 @@ "version": "v3.20.3" }, "ghcr.io/dhoeric/features/trivy:1.0.0": { - "version": "0.49.1" + "version": "0.52.1" } }, "customizations": { @@ -61,7 +61,8 @@ "eamodio.gitlens", "streetsidesoftware.code-spell-checker", "github.vscode-pull-request-github", - "codeandstuff.package-json-upgrade" + "codeandstuff.package-json-upgrade", + "AquaSecurityOfficial.trivy-vulnerability-scanner" ] } }, diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 86f6098895..6c66f1bb57 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -14,6 +14,7 @@ "eamodio.gitlens", "streetsidesoftware.code-spell-checker", "github.vscode-pull-request-github", - "codeandstuff.package-json-upgrade" + "codeandstuff.package-json-upgrade", + "AquaSecurityOfficial.trivy-vulnerability-scanner" ] }