Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Collect JaCoCo Report
if: ${{ github.event_name != 'pull_request' }}
id: jacoco_reporter
uses: PavanMudigonda/jacoco-reporter@v5.0
uses: PavanMudigonda/jacoco-reporter@v5.1
with:
coverage_results_path: build/jacoco.xml
coverage_report_name: Code Coverage
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
plugins {
id "java"
id "application"
id "com.gradleup.shadow" version "9.3.2"
id "com.gradleup.shadow" version "9.4.0"
id "jacoco"
}

Expand All @@ -40,7 +40,7 @@ repositories {

dependencies {
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.5.32'
implementation(group: 'net.dv8tion', name: 'JDA', version:'6.3.1'){
implementation(group: 'net.dv8tion', name: 'JDA', version:'6.3.2'){
exclude(module: 'opus-java')
}
implementation group: 'pw.chew', name: 'jda-chewtils-commons', version: '2.2.1'
Expand All @@ -56,7 +56,7 @@ dependencies {

testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '6.0.3'
testImplementation group: 'org.junit.platform', name: 'junit-platform-launcher', version: '6.0.3'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.22.0'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.23.0'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '6.0.3'
}

Expand Down
Loading