Skip to content

Commit 369ca8f

Browse files
Update all dependencies
1 parent 7e5e4b1 commit 369ca8f

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

.github/workflows/gradle.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
- name: Checkout
1919
uses: actions/checkout@v4.2.2
2020
- name: 'Set up JDK ${{ matrix.java }}'
21-
uses: actions/setup-java@v4.5.0
21+
uses: actions/setup-java@v4.6.0
2222
with:
2323
distribution: adopt
2424
java-version: '${{ matrix.java }}'
2525
- name: Cache Gradle
26-
uses: actions/cache@v4.1.2
26+
uses: actions/cache@v4.2.0
2727
with:
2828
path: ~/.gradle/caches
2929
key: >-
@@ -35,7 +35,7 @@ jobs:
3535
- name: Build the Jar
3636
run: './gradlew clean shadowJar'
3737
- name: Upload a Build Artifact
38-
uses: actions/upload-artifact@v4.4.3
38+
uses: actions/upload-artifact@v4.6.0
3939
with:
4040
name: 'LobbyHeads'
4141
path: build/libs/LobbyHeads*.jar

buildSrc/src/main/kotlin/lobbyheads-checkstyle.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
checkstyle {
6-
toolVersion = "10.20.1"
6+
toolVersion = "10.21.1"
77

88
configFile = file("${rootDir}/checkstyle/checkstyle.xml")
99
configProperties["checkstyle.suppressions.file"] = "${rootDir}/checkstyle/suppressions.xml"

buildSrc/src/main/kotlin/lobbyheads-java-unit-test.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ plugins {
44

55
dependencies {
66
testImplementation("org.codehaus.groovy:groovy-all:3.0.23")
7-
testImplementation(platform("org.junit:junit-bom:5.11.3"))
7+
testImplementation(platform("org.junit:junit-bom:5.11.4"))
88
testImplementation("org.junit.jupiter:junit-jupiter")
9-
testImplementation("org.mockito:mockito-core:5.14.2")
9+
testImplementation("org.mockito:mockito-core:5.15.2")
1010
}
1111

1212
tasks.getByName<Test>("test") {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

lobbyheads-core/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ dependencies {
2020

2121
// a cool library, kyori
2222
implementation("net.kyori:adventure-platform-bukkit:4.3.4")
23-
implementation("net.kyori:adventure-text-minimessage:4.17.0")
23+
implementation("net.kyori:adventure-text-minimessage:4.18.0")
2424

2525
// Rollczi's skullapi
2626
implementation("dev.rollczi:liteskullapi:1.3.0")
2727

2828
// eternalcode commons
29-
implementation("com.eternalcode:eternalcode-commons-adventure:1.1.4")
29+
implementation("com.eternalcode:eternalcode-commons-adventure:1.1.5")
3030

3131
// spigot-api
3232
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
@@ -36,7 +36,7 @@ dependencies {
3636
compileOnly("com.mojang:authlib:5.0.47")
3737

3838
// HoloEasy based on top of the protocolib
39-
implementation("com.github.unldenis:holoeasy:3.0.1")
39+
implementation("com.github.unldenis:holoeasy:3.4.4")
4040

4141
// PlaceholderAPI, if anyone wants to parse placeholders in the head's name
4242
compileOnly("me.clip:placeholderapi:2.11.6")
@@ -49,9 +49,9 @@ dependencies {
4949

5050
// tests setup
5151
testImplementation("org.codehaus.groovy:groovy-all:3.0.23")
52-
testImplementation(platform("org.junit:junit-bom:5.11.3"))
52+
testImplementation(platform("org.junit:junit-bom:5.11.4"))
5353
testImplementation("org.junit.jupiter:junit-jupiter")
54-
testImplementation("org.mockito:mockito-core:5.14.2")
54+
testImplementation("org.mockito:mockito-core:5.15.2")
5555
}
5656

5757
java {

0 commit comments

Comments
 (0)