We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63900ff commit daca06cCopy full SHA for daca06c
1 file changed
.github/workflows/gradle.yml
@@ -2,14 +2,14 @@ name: Build Test Coverage
2
on: [push, pull_request]
3
jobs:
4
run:
5
- runs-on: ubuntu-20.04
+ runs-on: ubuntu:latest
6
steps:
7
- name: Checkout
8
- uses: actions/checkout@v3
9
- - name: Setup JDK 11
10
- uses: actions/setup-java@v3
+ uses: actions/checkout@v6
+ - name: Setup JDK 17
+ uses: actions/setup-java@v5
11
with:
12
- java-version: '11'
+ java-version: '17'
13
distribution: 'adopt'
14
- name: Install xvfb for headless testing
15
run: sudo apt-get install xvfb
@@ -18,6 +18,6 @@ jobs:
18
- name: Build with Gradle
19
run: xvfb-run --auto-servernum ./gradlew build
20
- name: Codecov
21
- uses: codecov/codecov-action@v4.2.0
+ uses: codecov/codecov-action@v5
22
env:
23
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments