Skip to content

Commit 713ac22

Browse files
committed
Test
1 parent 3be7146 commit 713ac22

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/java-sample-app-s3-deploy.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,15 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
java-version: [ '17' ]
18+
java-version: [ '8', '11', '17', '21', '22' ]
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v4
22+
- uses: actions/setup-java@v4
2223
with:
23-
fetch-depth: 0
24+
distribution: 'temurin'
25+
java-version: ${{ matrix.java-version }}
26+
check-latest: true
2427

2528
- name: Build Main Jar
2629
working-directory: sample-apps/springboot

0 commit comments

Comments
 (0)