From c5e1a01fdf69c04e3fd58505d3ec2a0eabd71313 Mon Sep 17 00:00:00 2001 From: Peter Collins Date: Wed, 13 Nov 2024 15:30:12 -0800 Subject: [PATCH] Install .NET 9 GA --- .github/workflows/build.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7042f22..7f39af6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,19 +15,10 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Use .NET 9.x + - name: Use .NET 9.0.x uses: actions/setup-dotnet@v4 with: - dotnet-version: '9.x' - dotnet-quality: 'preview' - - # Temporarily install newer runtime for iOS binding projects - - name: Install .NET 9 RTM runtime - run: > - DOTNET_ROOT=~/.dotnet/ && - curl -L https://dot.net/v1/dotnet-install.sh --retry 5 --retry-max-time 300 > dotnet-install.sh && - chmod +x dotnet-install.sh && - ./dotnet-install.sh -c 9.0 -q daily --runtime dotnet + dotnet-version: 9.0.x - name: Install JDK 17 uses: actions/setup-java@v4