diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 10c89a1f9ac..32c85b632fa 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -103,6 +103,8 @@ jobs: 8.x 9.x 10.x + env: + DOTNET_INSTALL_DIR: ${{ env.DOTNET_ROOT }} - name: Trust HTTPS development certificate (Linux) if: inputs.os == 'ubuntu-latest' diff --git a/global.json b/global.json index 0d0640da17f..4b04b6417a9 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "10.0.100", + "version": "10.0.101", "rollForward": "major", "allowPrerelease": true, "paths": [ @@ -10,7 +10,7 @@ "errorMessage": "The .NET SDK could not be found. Run ./restore.sh (Linux/macOS) or ./restore.cmd (Windows) to install the local SDK." }, "tools": { - "dotnet": "10.0.100", + "dotnet": "10.0.101", "runtimes": { "dotnet/x64": [ "$(DotNetRuntimePreviousVersionForTesting)", diff --git a/tests/Aspire.EndToEnd.Tests/IntegrationServicesTests.cs b/tests/Aspire.EndToEnd.Tests/IntegrationServicesTests.cs index c53fa489694..0bd3743eb81 100644 --- a/tests/Aspire.EndToEnd.Tests/IntegrationServicesTests.cs +++ b/tests/Aspire.EndToEnd.Tests/IntegrationServicesTests.cs @@ -22,7 +22,7 @@ public IntegrationServicesTests(ITestOutputHelper testOutput, IntegrationService [Trait("scenario", "basicservices")] [InlineData(TestResourceNames.postgres)] [InlineData(TestResourceNames.efnpgsql)] - [InlineData(TestResourceNames.redis, Skip = "https://github.com/dotnet/aspire/issues/13457")] + [InlineData(TestResourceNames.redis)] public Task VerifyComponentWorks(TestResourceNames resourceName) => RunTestAsync(async (cancellationToken) => {