We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cea1ba commit cc1c2a2Copy full SHA for cc1c2a2
.github/workflows/build.yml
@@ -7,11 +7,10 @@ jobs:
7
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
8
runs-on: ubuntu-latest
9
steps:
10
- - name: Checkout repo
11
- uses: actions/checkout@v2
12
- - name: Set up JDK 1.8
13
- uses: actions/setup-java@v1
+ - uses: actions/checkout@v4
+ - uses: actions/setup-java@v3
14
with:
15
- java-version: 1.8
+ java-version: '17'
+ distribution: 'temurin'
16
- name: Build with Maven
17
run: mvn -B package --file pom.xml
0 commit comments