Skip to content

Commit ce115bb

Browse files
authored
[bq] 0.2 upgrade workflow to Java 17
1 parent 3ba05fb commit ce115bb

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/spring-batch-bigquery.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout source code
14-
uses: actions/checkout@v2
15-
- name: Set up JDK 1.8
16-
uses: actions/setup-java@v1
14+
uses: actions/checkout@v3
15+
- name: Set up JDK 17
16+
uses: actions/setup-java@v3
1717
with:
18-
java-version: 1.8
18+
distribution: 'temurin'
19+
java-version: 17
20+
cache: 'maven'
1921
- name: Build with Maven
2022
run: mvn -B package --file pom.xml
2123
working-directory: spring-batch-bigquery

0 commit comments

Comments
 (0)