Skip to content

Commit

Permalink
Update CircleCI images (#1903)
Browse files Browse the repository at this point in the history
* Update CircleCI images

The older images are now deprecated, updating to new images.

* Corrected Default image tags
  • Loading branch information
kdavisk6 authored Dec 31, 2022
1 parent 780a1c2 commit 5b77d14
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ executors:
parameters:
version:
description: 'jdk version to use'
default: '8'
default: '8.0'
type: string
docker:
- image: circleci/openjdk:<<parameters.version>>
- image: cimg/openjdk:<<parameters.version>>
android:
parameters:
version:
description: 'jdk version to use'
default: '8'
default: '8.0'
type: string
docker:
- image: circleci/openjdk:<<parameters.version>>
- image: cimg/openjdk:<<parameters.version>>
# common commands
commands:
resolve-dependencies:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
parameters:
jdk:
description: 'jdk version to use'
default: '8'
default: '8.0'
type: string
executor:
name: java
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
parameters:
jdk:
description: 'jdk version to use'
default: '8'
default: '8.0'
type: string
executor:
name: java
Expand All @@ -160,7 +160,7 @@ jobs:
parameters:
jdk:
description: 'jdk version to use'
default: '11'
default: '11.0'
type: string
executor:
name: java
Expand All @@ -181,17 +181,17 @@ workflows:
build:
jobs:
- test:
jdk: '8'
jdk: '8.0'
name: 'jdk 8'
filters:
<<: *all-branches
- test:
jdk: '11'
jdk: '11.0'
name: 'jdk 11'
filters:
<<: *all-branches
- test:
jdk: '17-buster'
jdk: '17.0'
name: 'jdk 17'
filters:
<<: *all-branches
Expand All @@ -202,22 +202,22 @@ workflows:
snapshot:
jobs:
- test:
jdk: '8'
jdk: '8.0'
name: 'jdk 8'
filters:
<<: *master-only
- test:
jdk: '11'
jdk: '11.0'
name: 'jdk 11'
filters:
<<: *master-only
- test:
jdk: '17-buster'
jdk: '17.0'
name: 'jdk 17'
filters:
<<: *master-only
- deploy:
jdk: '8'
jdk: '8.0'
name: 'deploy snapshot'
requires:
- 'jdk 8'
Expand All @@ -227,7 +227,7 @@ workflows:
filters:
<<: *master-only
- deploy-jdk11:
jdk: '11'
jdk: '11.0'
name: 'deploy jdk11 snapshot modules'
requires:
- 'jdk 11'
Expand All @@ -239,13 +239,13 @@ workflows:
release:
jobs:
- deploy:
jdk: '8'
jdk: '8.0'
name: 'release to maven central'
context: Sonatype
filters:
<<: *tags-only
- deploy-jdk11:
jdk: '11'
jdk: '11.0'
name: 'release jdk11 artifacts to maven central'
requires:
- 'release to maven central'
Expand Down

0 comments on commit 5b77d14

Please sign in to comment.