diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07dc94b71..aa7abdbb6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,11 +75,13 @@ 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 }}" \ + -Dsonar.token="${{ secrets.SONAR_TOKEN_2025 }}" \ -Dsonar.qualitygate.wait=true #Deployment diff --git a/build.gradle b/build.gradle index 5a18b9b0f..cde4043ec 100644 --- a/build.gradle +++ b/build.gradle @@ -81,7 +81,7 @@ dependencies { testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion" testImplementation "org.spockframework:spock-core:2.3-groovy-$groovyVersion" testImplementation 'org.objenesis:objenesis:3.4' // Mock creation with constructor parameters - testImplementation 'net.bytebuddy:byte-buddy:1.17.5' // Mocks of classes + testImplementation 'net.bytebuddy:byte-buddy:1.17.6' // Mocks of classes // testcontainers (docker framework for testing) testImplementation "org.testcontainers:testcontainers:$testcontainersVersion"