From 316ad906ba7eb91c760af2a38c951158c808435c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 02:59:06 +0000 Subject: [PATCH] chore(deps): Update build systems --- .github/workflows/build.yaml | 8 ++++---- .github/workflows/draft-release.yaml | 8 ++++---- build.gradle.kts | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ef5bac6..d675a8a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -26,20 +26,20 @@ jobs: steps: - name: "Checkout Repository" - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 with: fetch-tags: true fetch-depth: 0 - name: "Checkout CI Scripts" - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 with: repository: xpdustry/.github path: .xpdustry-ci sparse-checkout: scripts - name: "Setup Java 25" - uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5 + uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5 with: java-version: "25" distribution: "temurin" @@ -75,7 +75,7 @@ jobs: - name: "Publish to GitHub" if: ${{ github.event_name == 'release' }} - uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3 + uses: softprops/action-gh-release@3d0d9888cb7fd7b750713d6e236d1fcb99157228 # v3 with: files: "build/tmp/dist/*.jar" diff --git a/.github/workflows/draft-release.yaml b/.github/workflows/draft-release.yaml index 7b5e924..40e2a8c 100644 --- a/.github/workflows/draft-release.yaml +++ b/.github/workflows/draft-release.yaml @@ -12,20 +12,20 @@ jobs: steps: - name: "Checkout Repository" - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 with: fetch-tags: true fetch-depth: 0 - name: "Checkout CI Scripts" - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 with: repository: xpdustry/.github path: .xpdustry-ci sparse-checkout: scripts - name: "Setup Java 25" - uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5 + uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5 with: java-version: "25" distribution: "temurin" @@ -48,7 +48,7 @@ jobs: ".GENERATED_CHANGELOG.md" - name: "Create Draft Release" - uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3 + uses: softprops/action-gh-release@3d0d9888cb7fd7b750713d6e236d1fcb99157228 # v3 with: tag_name: "v${{ steps.version.outputs.version }}" name: "v${{ steps.version.outputs.version }} release" diff --git a/build.gradle.kts b/build.gradle.kts index e3df47c..475ca66 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,9 +8,9 @@ import org.gradle.kotlin.dsl.register import java.util.Properties plugins { - id("com.diffplug.spotless") version "8.7.0" + id("com.diffplug.spotless") version "8.8.0" id("net.kyori.indra") version "4.0.0" - id("com.gradleup.shadow") version "9.4.3" + id("com.gradleup.shadow") version "9.6.0" id("com.xpdustry.toxopid") version "4.2.0" }