From 3db5c90cc4b4bec2a91377559aac63ed3b6875a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 00:34:02 -0500 Subject: [PATCH] Upgrade dotnet sdk to v6.0.419 (#3158) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .devcontainer/devcontainer.json | 4 ++-- src/dev.sh | 2 +- src/global.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c66250eef..eecb81148 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,13 +4,13 @@ "features": { "ghcr.io/devcontainers/features/docker-in-docker:1": {}, "ghcr.io/devcontainers/features/dotnet": { - "version": "6.0.418" + "version": "6.0.419" }, "ghcr.io/devcontainers/features/node:1": { "version": "16" }, "ghcr.io/devcontainers/features/sshd:1": { - "version": "latest" + "version": "latest" } }, "customizations": { diff --git a/src/dev.sh b/src/dev.sh index fa637d116..485ca520e 100755 --- a/src/dev.sh +++ b/src/dev.sh @@ -17,7 +17,7 @@ LAYOUT_DIR="$SCRIPT_DIR/../_layout" DOWNLOAD_DIR="$SCRIPT_DIR/../_downloads/netcore2x" PACKAGE_DIR="$SCRIPT_DIR/../_package" DOTNETSDK_ROOT="$SCRIPT_DIR/../_dotnetsdk" -DOTNETSDK_VERSION="6.0.418" +DOTNETSDK_VERSION="6.0.419" DOTNETSDK_INSTALLDIR="$DOTNETSDK_ROOT/$DOTNETSDK_VERSION" RUNNER_VERSION=$(cat runnerversion) diff --git a/src/global.json b/src/global.json index b014aea08..bf923c69c 100644 --- a/src/global.json +++ b/src/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "6.0.418" + "version": "6.0.419" } }