Skip to content

Commit a5b6aa6

Browse files
committed
Update Actions workflow
1 parent 919cb4a commit a5b6aa6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,17 @@ jobs:
1515
17 # Minimum supported by Minecraft
1616
]
1717
# and run on both Linux and Windows
18-
os: [ubuntu-20.04, windows-latest]
18+
os: [ubuntu-22.04, windows-latest]
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- name: checkout repository
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323
- name: validate gradle wrapper
2424
uses: gradle/wrapper-validation-action@v1
2525
- name: setup jdk ${{ matrix.java }}
26-
uses: actions/setup-java@v1
26+
uses: actions/setup-java@v3
2727
with:
28+
distribution: temurin
2829
java-version: ${{ matrix.java }}
2930
- name: make gradle wrapper executable
3031
if: ${{ runner.os != 'Windows' }}
@@ -33,7 +34,7 @@ jobs:
3334
run: ./gradlew build
3435
- name: capture build artifacts
3536
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
3738
with:
3839
name: Artifacts
3940
path: build/libs/

0 commit comments

Comments
 (0)