From c978e43d8d46385c60fee49332b627ef053432b3 Mon Sep 17 00:00:00 2001 From: imreallybadatnames Date: Thu, 9 May 2024 19:13:30 +1100 Subject: [PATCH] ci fix --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5f6112b..aa5300a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,9 +10,9 @@ jobs: strategy: matrix: # Use these Java versions - java: [17] # Current Java LTS & minimum supported by Minecraft + java: [21] # Current Java LTS & minimum supported by Minecraft # Test on both Linux and Windows - os: [ubuntu-20.04, windows-latest] + os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} @@ -38,7 +38,7 @@ jobs: - name: capture build artifacts # Only capture artifacts from one OS (Linux) - if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS + if: ${{ runner.os == 'Linux' && matrix.java == '21' }} # Only upload artifacts built from latest java on one OS uses: actions/upload-artifact@v2 with: name: Artifacts