Skip to content
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

Replace JDK17 with JDK21 image in CCI Build #953

Merged
merged 1 commit into from
Oct 18, 2023
Merged
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
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ jobs:

jdk11:
docker:
- image: cimg/openjdk:11.0.18-node
- image: cimg/openjdk:11.0.20-node
environment:
JVM_OPTS: -Xmx3200m
resource_class: large
parallelism: 3
steps: *build_steps

jdk17:
jdk21:
docker:
- image: cimg/openjdk:17.0.6-node
- image: cimg/openjdk:21.0.0-node
environment:
JVM_OPTS: -Xmx3200m
resource_class: large
Expand All @@ -55,7 +55,7 @@ jobs:

snyk-scan:
docker:
- image: cimg/openjdk:17.0.6-node
- image: cimg/openjdk:21.0.0-node
steps:
- checkout
- run: npm install
Expand All @@ -79,7 +79,7 @@ workflows:
- jdk11:
requires:
- cache-secrets
- jdk17:
- jdk21:
requires:
- cache-secrets
- general-platform-helpers/job-semgrep-prepare:
Expand All @@ -91,7 +91,7 @@ workflows:
- general-platform-helpers/job-snyk-prepare:
name: prepare-snyk
requires:
- jdk17
- jdk21
- snyk-scan:
name: execute-snyk
requires:
Expand Down