From b6d6b1fc0fb4f38dbf169c848671c13ccecb3a9b Mon Sep 17 00:00:00 2001 From: jshipley Date: Fri, 7 Aug 2026 13:42:56 -0600 Subject: [PATCH 1/2] Updating git actions for 26.1.2 (and updating deprecating action versions) --- .github/workflows/build.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fc43514a2..c105b6f72 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,14 +33,14 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: setup jdk 25 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: '25' distribution: 'microsoft' - name: setup gradle - uses: gradle/actions/setup-gradle@v4 + uses: gradle/actions/setup-gradle@v6 with: cache-overwrite-existing: true - name: make gradle wrapper executable @@ -51,6 +51,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: Artifacts - path: | - fabric/build/libs/ - neoforge/build/libs/ \ No newline at end of file + path: build/libs \ No newline at end of file From 259a1551dff2e958b744ba1b4de745f5e916481e Mon Sep 17 00:00:00 2001 From: jshipley Date: Fri, 7 Aug 2026 13:49:14 -0600 Subject: [PATCH 2/2] missed upload-artifact version --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c105b6f72..39d76b034 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,7 +48,7 @@ jobs: - name: build run: ./gradlew build --stacktrace - name: capture build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: Artifacts path: build/libs \ No newline at end of file