We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c736c9 commit 577ce5dCopy full SHA for 577ce5d
1 file changed
.github/workflows/CodeQuality.yml
@@ -10,12 +10,12 @@ jobs:
10
name: Build
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
14
with:
15
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
16
17
- name: Set up JDK 17
18
- uses: actions/setup-java@v4
+ uses: actions/setup-java@v5
19
20
distribution: 'temurin'
21
java-version: '17'
@@ -44,5 +44,5 @@ jobs:
44
45
- name: Sonarqube end
46
env:
47
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
- run: dotnet sonarscanner end /d:sonar.login="$GITHUB_TOKEN"
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
+ run: dotnet sonarscanner end /d:sonar.login="$SONAR_TOKEN"
0 commit comments