From 65e27bc8922fa92020ee21b9fba2b545c5f2fa23 Mon Sep 17 00:00:00 2001 From: Neil Macneale IV Date: Tue, 29 Jul 2025 18:38:41 +0000 Subject: [PATCH] Pin .NET SDK to version 8.0.412 for reproducible builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update from using --channel 8.0 to --version 8.0.412 to ensure consistent and reproducible testing environment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- integration-tests/MySQLDockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/MySQLDockerfile b/integration-tests/MySQLDockerfile index afc964d72f..7821c11a46 100644 --- a/integration-tests/MySQLDockerfile +++ b/integration-tests/MySQLDockerfile @@ -78,7 +78,7 @@ RUN go install . WORKDIR / # install dotnet -RUN curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 8.0 --install-dir /usr/local/bin --no-path && \ +RUN curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --version 8.0.412 --install-dir /usr/local/bin --no-path && \ dotnet --version # install pip for python3.9