From f33b571f7745d814271016281dd2e3187ed70db7 Mon Sep 17 00:00:00 2001 From: Dirk Lemstra Date: Sat, 18 Jan 2025 23:32:56 +0100 Subject: [PATCH] Install the latest dotnet 8 version on all non Windows builds. --- .github/workflows/main.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 00886b8c64..6511ff517b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,6 +20,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + - name: Install dependencies run: build/linux-x64/install.dependencies.sh @@ -49,6 +53,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + - name: Install dependencies run: build/linux-musl-x64/install.dependencies.sh @@ -78,7 +86,7 @@ jobs: - uses: actions/setup-dotnet@v4 with: - dotnet-version: '8.0.x' + dotnet-version: 8.0.x - name: Install dependencies run: build/linux-arm64/install.dependencies.sh @@ -107,6 +115,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + - name: Install dependencies run: build/macos-x64/install.dependencies.sh @@ -128,6 +140,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + - name: Install dependencies run: build/macos-arm64/install.dependencies.sh