Skip to content

Commit

Permalink
Bumped the JDK version and all the workflows actions
Browse files Browse the repository at this point in the history
  • Loading branch information
eliax1996 committed May 3, 2024
1 parent 7c142d0 commit 633ca12
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,11 @@ jobs:
#- run: |
# make bootstrap
# make release
- name: Set up JDK 11
uses: actions/setup-java@v1
- name: Set up JDK 17
uses: actions/setup-java@v4.2.1
with:
java-version: 11
distribution: 'openjdk'
java-version: '17'

- name: Build with Gradle
run: ./gradlew build
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Java SDK
uses: actions/setup-java@v1.4.3
uses: actions/setup-java@v4.2.1
with:
java-version: 11
distribution: 'openjdk'
java-version: '17'

- name: Checkout code
uses: actions/checkout@v2
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/master_push_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ jobs:
with:
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v4.2.1
with:
java-version: 11
distribution: 'openjdk'
java-version: '17'
- name: Build with Gradle
run: ./gradlew build integrationTest
5 changes: 3 additions & 2 deletions .github/workflows/pull_request_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v4.2.1
with:
java-version: 17
distribution: 'openjdk'
java-version: '17'
- name: Build with Gradle
run: ./gradlew build integrationTest

0 comments on commit 633ca12

Please sign in to comment.