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

fix: upgrade to use cimg instead of legacy images #109

Merged
merged 1 commit into from
Mar 29, 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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
lint:
<<: *defaults
docker:
- image: circleci/node:<< parameters.node_version >>
- image: cimg/node:<< parameters.node_version >>
steps:
- checkout
- install_deps
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
release:
<<: *defaults
docker:
- image: circleci/node:<< parameters.node_version >>
- image: cimg/node:<< parameters.node_version >>
resource_class: small
steps:
- checkout
Expand All @@ -145,7 +145,7 @@ workflows:
- lint:
name: Lint
context: nodejs-install
node_version: "10"
node_version: "18.15"
- test-unix:
name: Unix with node v<< matrix.node_version >>, go v<< matrix.go_version >>
context: nodejs-install
Expand All @@ -169,7 +169,7 @@ workflows:
- release:
name: Release
context: nodejs-app-release
node_version: "18"
node_version: "18.15"
requires:
- test-unix
- test-windows
Expand Down