From ca75af89cb47e505f6fb16c227794e64c6e6a090 Mon Sep 17 00:00:00 2001 From: Bram Date: Wed, 15 Nov 2023 12:55:13 +0100 Subject: [PATCH] Fix: Forgot to upgrade workflows to dotnet 8 --- .github/workflows/codeql-analysis.yml | 5 ----- .github/workflows/dotnet.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/publishDocs.yml | 2 +- 4 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 158575f..0659acd 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -40,11 +40,6 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - - - name: Setup .NET SDK - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '7.0.x' # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 64f7627..93ca624 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' - name: Install dependencies run: dotnet restore diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c358c6f..ad7f048 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' - name: Verify commit exists in origin/main run: | diff --git a/.github/workflows/publishDocs.yml b/.github/workflows/publishDocs.yml index 5429bbd..654779d 100644 --- a/.github/workflows/publishDocs.yml +++ b/.github/workflows/publishDocs.yml @@ -14,7 +14,7 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' - name: Install dependencies run: dotnet restore