Skip to content

Commit 6448350

Browse files
committed
Upgrade github actions to perform build and test execution
1 parent 8aaba44 commit 6448350

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/github-ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@ jobs:
1616
continue-on-error: false
1717
steps:
1818
- name: Checking out code base
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
22-
- name: Set up JDK 11
23-
uses: actions/setup-java@v1
22+
- name: Set up JDK 17
23+
uses: actions/setup-java@v4
2424
with:
25-
java-version: 11
25+
distribution: 'temurin'
26+
java-version: 17
2627
- name: Cache Maven packages
27-
uses: actions/cache@v1
28+
uses: actions/cache@v4
2829
with:
2930
path: ~/.m2
3031
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)