We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 700103c commit 29e38f3Copy full SHA for 29e38f3
1 file changed
.github/workflows/build.yml
@@ -12,7 +12,7 @@ jobs:
12
matrix:
13
# Use these Java versions
14
java: [
15
- 17, # Current Java LTS & minimum supported by Minecraft
+ 21, # Current Java LTS & minimum supported by Minecraft
16
]
17
# and run on both Linux and Windows
18
os: [ubuntu-20.04, windows-2022]
@@ -33,7 +33,7 @@ jobs:
33
run: ./gradlew build
34
- name: capture build artifacts
35
if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS
36
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v4
37
with:
38
name: Artifacts
39
path: build/libs/
0 commit comments