Skip to content

Commit

Permalink
Merge branch 'renovate/actions-setup-java-2.x'
Browse files Browse the repository at this point in the history
* renovate/actions-setup-java-2.x:
  Update actions/setup-java action to v2
  • Loading branch information
rahulsom committed Apr 5, 2021
2 parents 6cc961b + b037470 commit 2e45cd5
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ jobs:
name: Validate Gradle Wrapper

- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 1.8
distribution: 'zulu'
java-version: '8'

- name: Build with Gradle
env:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ jobs:
name: Validate Gradle Wrapper

- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 1.8
distribution: 'zulu'
java-version: '8'

- name: Build with Gradle
run: ./gradlew build asciidoctor --stacktrace --parallel --scan
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-tag-final.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ jobs:
name: Validate Gradle Wrapper

- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 1.8
distribution: 'zulu'
java-version: '8'

- name: Build with Gradle
env:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-tag-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ jobs:
name: Validate Gradle Wrapper

- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 1.8
distribution: 'zulu'
java-version: '8'

- name: Build with Gradle
env:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ jobs:
if: ${{ github.event_name == 'pull_request' }}

- name: Set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 1.8
distribution: 'zulu'
java-version: '8'

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down

0 comments on commit 2e45cd5

Please sign in to comment.