Skip to content

Commit daca06c

Browse files
committed
Update Github actions to more recent versions.
1 parent 63900ff commit daca06c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/gradle.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ name: Build Test Coverage
22
on: [push, pull_request]
33
jobs:
44
run:
5-
runs-on: ubuntu-20.04
5+
runs-on: ubuntu:latest
66
steps:
77
- name: Checkout
8-
uses: actions/checkout@v3
9-
- name: Setup JDK 11
10-
uses: actions/setup-java@v3
8+
uses: actions/checkout@v6
9+
- name: Setup JDK 17
10+
uses: actions/setup-java@v5
1111
with:
12-
java-version: '11'
12+
java-version: '17'
1313
distribution: 'adopt'
1414
- name: Install xvfb for headless testing
1515
run: sudo apt-get install xvfb
@@ -18,6 +18,6 @@ jobs:
1818
- name: Build with Gradle
1919
run: xvfb-run --auto-servernum ./gradlew build
2020
- name: Codecov
21-
uses: codecov/codecov-action@v4.2.0
21+
uses: codecov/codecov-action@v5
2222
env:
2323
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)