From a8b9f5dd1294cf7d16d734d322cc3a36396156d1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 20:30:10 +0000 Subject: [PATCH] Update all dependencies --- .github/workflows/gradle.yml | 2 +- build.gradle.kts | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 5e6e7569..5f19468d 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -25,7 +25,7 @@ jobs: - name: Run checkstyle run: ./gradlew checkstyleMain - name: Build with Gradle - uses: gradle/gradle-build-action@0bfe00a136db5e61ba3416b372542a65863a9fee + uses: gradle/gradle-build-action@9bca466e2722baf9e77b4f929bbe0af18848791f with: arguments: shadowJar - name: Upload a Build Artifact diff --git a/build.gradle.kts b/build.gradle.kts index b1940b97..f01e1e34 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -20,7 +20,7 @@ repositories { } checkstyle { - toolVersion = "10.12.4" + toolVersion = "10.12.5" configFile = file("${rootDir}/checkstyle/checkstyle.xml") @@ -30,7 +30,7 @@ checkstyle { dependencies { // JDA - implementation("net.dv8tion:JDA:5.0.0-beta.17") { + implementation("net.dv8tion:JDA:5.0.0-beta.18") { exclude("opus-java", "opus-java") } @@ -44,27 +44,27 @@ dependencies { implementation("pw.chew:jda-chewtils-command:2.0-SNAPSHOT") // Sentry.io integration - implementation("io.sentry:sentry:6.33.0") + implementation("io.sentry:sentry:6.34.0") // ORMLite implementation("com.j256.ormlite:ormlite-core:6.1") implementation("com.j256.ormlite:ormlite-jdbc:6.1") // HikariCP - implementation("com.zaxxer:HikariCP:5.0.1") + implementation("com.zaxxer:HikariCP:5.1.0") // Database drivers implementation("mysql:mysql-connector-java:8.0.33") - implementation("org.postgresql:postgresql:42.6.0") + implementation("org.postgresql:postgresql:42.7.0") implementation("com.h2database:h2:2.2.224") - implementation("org.mariadb.jdbc:mariadb-java-client:3.2.0") + implementation("org.mariadb.jdbc:mariadb-java-client:3.3.0") // Gson implementation("com.google.code.gson:gson:2.10.1") // tests - testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1") // mockwebserver testImplementation("com.squareup.okhttp3:mockwebserver:4.12.0")