From 4372c2d9a7d955bf206ad30d54e4ad2a839743f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Jun 2025 08:21:13 +0000 Subject: [PATCH 1/2] Bump net.bytebuddy:byte-buddy from 1.17.5 to 1.17.6 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.17.5 to 1.17.6. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.17.5...byte-buddy-1.17.6) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-version: 1.17.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From 53d4a92046a2fad47a12356c2328a0f986d57fd5 Mon Sep 17 00:00:00 2001 From: danielfeismann Date: Tue, 24 Jun 2025 18:38:02 +0200 Subject: [PATCH 2/2] test sonar token --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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