Skip to content

3.x: Update java version to 11 on CICD #462

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: scylla-3.x
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
with:
python-version: '3.10'

- name: Set up JDK 8.0
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 8.0
java-version: 11
distribution: 'temurin'

- name: Set up env
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
with:
python-version: '3.10'

- name: Set up JDK 8.0
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 8.0
java-version: 11
distribution: 'temurin'

- name: Set up env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: 11
distribution: 'temurin'
server-id: ossrh
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests@v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ jobs:
- name: Checkout source
uses: actions/checkout@v4

- name: Set up JDK 8
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: 11
distribution: 'temurin'

- name: Run unit tests
Expand Down Expand Up @@ -137,10 +137,10 @@ jobs:
- name: Checkout source
uses: actions/checkout@v4

- name: Set up JDK 8
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: 11
distribution: 'temurin'

- name: Setup Python 3
Expand Down Expand Up @@ -206,10 +206,10 @@ jobs:
- name: Checkout source
uses: actions/checkout@v4

- name: Set up JDK 8
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: 11
distribution: 'temurin'

- name: Setup Python 3
Expand Down
Loading