diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa7abdbb6..07dc94b71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,13 +75,11 @@ jobs: run: ./gradlew javadoc - name: SonarQube - env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_2025 }} run: | ./gradlew sonar \ -Dsonar.projectKey=${{ vars.SONAR_PROJECT_KEY }} \ -Dsonar.host.url=${{ vars.SONAR_HOST_URL }} \ - -Dsonar.token="${{ secrets.SONAR_TOKEN_2025 }}" \ + -Dsonar.token="${{ secrets.SONAR_TOKEN }}" \ -Dsonar.qualitygate.wait=true #Deployment diff --git a/build.gradle b/build.gradle index cde4043ec..432ce561c 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,7 @@ ext { groovyBinaryVersion = "4.0.27" junitVersion = '1.12.0' - testcontainersVersion = '1.21.1' + testcontainersVersion = '1.21.2' scriptsLocation = 'gradle' + File.separator + 'scripts' + File.separator //location of script plugins }