diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 053b6e14d..b39d4516f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,7 +79,7 @@ jobs: ./gradlew sonar \ -Dsonar.projectKey=${{ vars.SONAR_PROJECT_KEY }} \ -Dsonar.host.url=${{ vars.SONAR_HOST_URL }} \ - -Dsonar.login=${{ secrets.SONAR_TOKEN }} \ + -Dsonar.token=${{ secrets.SONAR_TOKEN }} \ -Dsonar.qualitygate.wait=true #Deployment diff --git a/build.gradle b/build.gradle index 5013be8bf..5eba3de45 100644 --- a/build.gradle +++ b/build.gradle @@ -99,7 +99,7 @@ dependencies { // Databases implementation 'org.influxdb:influxdb-java:2.25' implementation 'com.couchbase.client:java-client:3.8.2' - runtimeOnly 'org.postgresql:postgresql:42.7.6' // postgresql jdbc driver required during runtime + runtimeOnly 'org.postgresql:postgresql:42.7.7' // postgresql jdbc driver required during runtime implementation 'commons-io:commons-io:2.19.0' // I/O functionalities implementation 'commons-codec:commons-codec:1.18.0' // needed by commons-compress