From abe2502b27e2818ba96f03b287b15ee882e475a2 Mon Sep 17 00:00:00 2001 From: Livio Spring Date: Mon, 9 Sep 2024 11:58:25 +0200 Subject: [PATCH] chore: use default (lts) node version for devcontainer (#8532) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Which Problems Are Solved Node devcontainer still used node version 18. # How the Problems Are Solved Use default (lts) version to mitigate problems. # Additional Changes None # Additional Context - reference: https://github.com/devcontainers/features/tree/main/src/node Co-authored-by: Tim Möhlmann --- .devcontainer/devcontainer.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 90dbb52ba7..5d49f92cf4 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,9 +7,7 @@ "ghcr.io/devcontainers/features/go:1": { "version": "1.22" }, - "ghcr.io/devcontainers/features/node:1": { - "version": "18" - }, + "ghcr.io/devcontainers/features/node:1": {}, "ghcr.io/guiyomh/features/golangci-lint:0": {}, "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}, "ghcr.io/devcontainers/features/github-cli:1": {}, @@ -21,4 +19,4 @@ 8080 ], "onCreateCommand": "npm install -g sass@1.64.1" -} \ No newline at end of file +}