File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -15,16 +15,17 @@ jobs:
15
15
17 # Minimum supported by Minecraft
16
16
]
17
17
# and run on both Linux and Windows
18
- os : [ubuntu-20 .04, windows-latest]
18
+ os : [ubuntu-22 .04, windows-latest]
19
19
runs-on : ${{ matrix.os }}
20
20
steps :
21
21
- name : checkout repository
22
- uses : actions/checkout@v2
22
+ uses : actions/checkout@v3
23
23
- name : validate gradle wrapper
24
24
uses : gradle/wrapper-validation-action@v1
25
25
- name : setup jdk ${{ matrix.java }}
26
- uses : actions/setup-java@v1
26
+ uses : actions/setup-java@v3
27
27
with :
28
+ distribution : temurin
28
29
java-version : ${{ matrix.java }}
29
30
- name : make gradle wrapper executable
30
31
if : ${{ runner.os != 'Windows' }}
33
34
run : ./gradlew build
34
35
- name : capture build artifacts
35
36
if : ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS
36
- uses : actions/upload-artifact@v2
37
+ uses : actions/upload-artifact@v3
37
38
with :
38
39
name : Artifacts
39
40
path : build/libs/
You can’t perform that action at this time.
0 commit comments