Skip to content

Commit 730f78a

Browse files
committed
Use new Circle CI images
The old images are deprecated: <https://discuss.circleci.com/t/legacy-convenience-image-deprecation/41034>
1 parent 3f0b5bc commit 730f78a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.circleci/config.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,33 @@
22

33
version: 2.1
44

5-
orbs:
6-
node: circleci/[email protected]
7-
85
executors:
96
node16:
107
docker:
11-
- image: cimg/node:16.1.0
8+
- image: cimg/node:16.14.0 # Latest 16.x
129
working_directory: ~/workspace
1310
node14_latest:
1411
docker:
15-
- image: circleci/node:14
12+
- image: cimg/node:14.17.4 # Latest 14.x
1613
working_directory: ~/workspace
14+
# 14.8 is the first version with top level await in ES modules.
1715
node14_8:
1816
docker:
19-
- image: circleci/node:14.8
17+
- image: cimg/node:14.8
2018
working_directory: ~/workspace
19+
# 14.7 is the last version without top level await in ES modules.
2120
node14_7:
2221
docker:
23-
- image: circleci/node:14.7
22+
- image: cimg/node:14.7
2423
working_directory: ~/workspace
2524
node12_latest:
2625
docker:
27-
- image: circleci/node:12
26+
- image: cimg/node:12.22.10 # Latest 12.x
2827
working_directory: ~/workspace
28+
# 12.17 is the first version with dynamic import() of commonjs modules
2929
node12_17:
3030
docker:
31-
- image: circleci/node:12.17
31+
- image: cimg/node:12.17
3232
working_directory: ~/workspace
3333

3434
jobs:

0 commit comments

Comments
 (0)