Skip to content

Commit 642a1c2

Browse files
committed
Fix actions/setup-java version parameter for jobs targeting Java 8
1 parent 0a296ba commit 642a1c2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Set up JDK 1.8
16+
- name: Set up JDK 8
1717
uses: actions/setup-java@v4
1818
with:
1919
distribution: 'temurin'
20-
java-version: '1.8'
20+
java-version: '8'
2121
cache: 'maven'
2222
- name: Build with Maven
2323
run: mvn -B package

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Set up JDK 1.8
16+
- name: Set up JDK 8
1717
uses: actions/setup-java@v4
1818
with:
1919
distribution: 'temurin'
20-
java-version: '1.8'
20+
java-version: '8'
2121
cache: 'maven'
2222
- name: Build with Maven
2323
run: mvn -B package

0 commit comments

Comments
 (0)