diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7bb7812..3662e00a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout for CI 🛎️' - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 'Set up JDK 21 📦' uses: actions/setup-java@v5 with: @@ -31,7 +31,7 @@ jobs: SNAPSHOTS_MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} SNAPSHOTS_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - name: 'Publish Test Report 📊' - uses: mikepenz/action-junit-report@v5 + uses: mikepenz/action-junit-report@v6 if: success() || failure() # Continue on failure with: report_paths: '**/build/test-results/test/TEST-*.xml' diff --git a/.github/workflows/pr_tests.yml b/.github/workflows/pr_tests.yml index 24d34b79..8d587e4c 100644 --- a/.github/workflows/pr_tests.yml +++ b/.github/workflows/pr_tests.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout for CI 🛎' - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 'Set up JDK 21 📦' uses: actions/setup-java@v5 with: @@ -24,7 +24,7 @@ jobs: with: arguments: test - name: 'Publish Test Report 📊' - uses: mikepenz/action-junit-report@v5 + uses: mikepenz/action-junit-report@v6 if: success() || failure() # Continue on failure with: report_paths: '**/build/test-results/test/TEST-*.xml' \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e2f33e9d..acd401d7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout for CI 🛎️' - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 'Set up JDK 21 📦' uses: actions/setup-java@v5 with: @@ -27,7 +27,7 @@ jobs: RELEASES_MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} RELEASES_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - name: 'Publish Test Report 📊' - uses: mikepenz/action-junit-report@v5 + uses: mikepenz/action-junit-report@v6 if: success() || failure() # Continue on failure with: report_paths: '**/build/test-results/test/TEST-*.xml' diff --git a/.github/workflows/update_docs.yml b/.github/workflows/update_docs.yml index 463da075..2de0048f 100644 --- a/.github/workflows/update_docs.yml +++ b/.github/workflows/update_docs.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout for CI 🛎️' - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 'Push Docs to Github Wiki 📄️' uses: Andrew-Chen-Wang/github-wiki-action@v5 with: diff --git a/bukkit/build.gradle b/bukkit/build.gradle index eef61dae..e2eee0a4 100644 --- a/bukkit/build.gradle +++ b/bukkit/build.gradle @@ -27,7 +27,7 @@ dependencies { compileOnly 'commons-io:commons-io:2.20.0' compileOnly 'org.json:json:20250517' compileOnly 'net.william278:minedown:1.8.2' - compileOnly 'de.exlll:configlib-yaml:4.6.1' + compileOnly 'de.exlll:configlib-yaml:4.6.3' compileOnly 'com.zaxxer:HikariCP:7.0.2' compileOnly 'net.william278:DesertWell:2.0.4' compileOnly 'net.william278:AdvancementAPI:97a9583413' diff --git a/common/build.gradle b/common/build.gradle index 7491a6b1..8bb4c227 100644 --- a/common/build.gradle +++ b/common/build.gradle @@ -8,9 +8,9 @@ dependencies { api 'net.william278:minedown:1.8.2' api 'net.william278:mapdataapi:2.0' api 'org.json:json:20250517' - api 'com.google.code.gson:gson:2.13.1' + api 'com.google.code.gson:gson:2.13.2' api 'com.fatboyindustrial.gson-javatime-serialisers:gson-javatime-serialisers:1.1.2' - api 'de.exlll:configlib-yaml:4.6.1' + api 'de.exlll:configlib-yaml:4.6.3' api 'net.william278:paginedown:1.1.2' api 'net.william278:DesertWell:2.0.4' api('com.zaxxer:HikariCP:7.0.2') { @@ -39,7 +39,7 @@ dependencies { testImplementation "org.xerial.snappy:snappy-java:$snappy_version" testImplementation 'com.google.guava:guava:33.4.8-jre' testImplementation 'com.github.plan-player-analytics:Plan:5.6.2965' - testCompileOnly 'de.exlll:configlib-yaml:4.6.1' + testCompileOnly 'de.exlll:configlib-yaml:4.6.3' testCompileOnly 'org.jetbrains:annotations:26.0.2' annotationProcessor 'org.projectlombok:lombok:1.18.38' diff --git a/fabric/build.gradle b/fabric/build.gradle index 525810a0..ca000116 100644 --- a/fabric/build.gradle +++ b/fabric/build.gradle @@ -19,7 +19,7 @@ dependencies { modImplementation "net.fabricmc.fabric-api:fabric-api:${fabric_api_version}" // Manually include config deps due to the way including api deps works - implementation include("de.exlll:configlib-core:4.6.1") + implementation include("de.exlll:configlib-core:4.6.3") implementation include("org.snakeyaml:snakeyaml-engine:2.10") implementation include('org.apache.commons:commons-pool2:2.12.1')