From 75922888a66a0c248400c0114981b32c9a7c6cd6 Mon Sep 17 00:00:00 2001 From: samatrhea Date: Tue, 12 Mar 2024 23:20:12 +0100 Subject: [PATCH] [Update] CodeQuality GH action to JDK 17 and actions/setup-dotnet@v3 --- .github/workflows/CodeQuality.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CodeQuality.yml b/.github/workflows/CodeQuality.yml index 50e65633..494d1a67 100644 --- a/.github/workflows/CodeQuality.yml +++ b/.github/workflows/CodeQuality.yml @@ -13,8 +13,14 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + overwrite-settings: false - name: Setup dotnet - uses: actions/setup-dotnet@v2 + uses: actions/setup-dotnet@v3 with: dotnet-version: '8.0.x'