Skip to content

Commit 872d286

Browse files
Update all dependencies
1 parent 1e751d1 commit 872d286

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

.github/workflows/gradle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ jobs:
3232
- name: Make gradlew executable
3333
run: chmod +x gradlew
3434
- name: Build with Gradle
35-
uses: gradle/gradle-build-action@4c39dd82cd5e1ec7c6fa0173bb41b4b6bb3b86ff
35+
uses: gradle/gradle-build-action@66535aaf56f831b35e3a8481c9c99b665b84dd45
3636
with:
3737
arguments: shadowAll
3838
- name: Upload a ChatFormatter Artifact
39-
uses: actions/upload-artifact@v4.3.3
39+
uses: actions/upload-artifact@v4.3.4
4040
with:
4141
name: 'Successfully build ChatFormatter'
4242
path: build/libs/ChatFormatter v*.jar

chatformatter-core/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818
testImplementation("net.kyori:adventure-text-minimessage:$miniMessageVersion")
1919

2020
// CDN Configs
21-
val cdnVersion = "1.14.4"
21+
val cdnVersion = "1.14.5"
2222
implementation("net.dzikoysk:cdn:$cdnVersion")
2323
testImplementation("net.dzikoysk:cdn:$cdnVersion")
2424

@@ -33,13 +33,13 @@ dependencies {
3333
implementation("com.eternalcode:gitcheck:1.0.0")
3434

3535
// JUnit 5
36-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.2")
37-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.2")
38-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.2")
36+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.3")
37+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.3")
38+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.3")
3939
testImplementation("org.mockito:mockito-core:5.12.0")
4040
testImplementation("org.mockito:mockito-junit-jupiter:5.12.0")
4141
testImplementation("me.clip:placeholderapi:2.11.6")
42-
testImplementation("org.assertj:assertj-core:3.26.0")
42+
testImplementation("org.assertj:assertj-core:3.26.3")
4343
}
4444

4545
tasks {

gradle/wrapper/gradle-wrapper.jar

51 Bytes
Binary file not shown.

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.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90+
' "$PWD" ) || exit
8891

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

gradlew.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

0 commit comments

Comments
 (0)