-
Notifications
You must be signed in to change notification settings - Fork 16
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
CircleCI workflow uses deprecated Docker convenience image #35
Comments
This is a warning only, however it means that the repo is being tested on CircleCI against an old version of Node.js ( This is however mitigated by https://github.com/cypress-io/request/blob/master/.github/workflows/yarn.yaml which tests against Node.js |
Hi @MikeMcC399 we are aware this is a deprecated image, but at the moment that library will only run on that without further work. We eventually would like to move away from request to utilize fetch instead but that work has not been lined up. |
Hi Ben @nagash77
|
The CircleCI workflow .circleci/config.yml produces a warning on the CircleCI pipeline when run.
The warning is
"You’re using a deprecated Docker convenience image. Upgrade to a next-gen Docker convenience image."
The posting (deprecated Docker convenience image) from August 2021 says:
"Moving from a legacy to next-gen image requires a change to the namespace. All legacy images have a Docker namespace of
circleci
, while next-gen images have a Docker namespace ofcimg
."The outdated workflow lines of code are:
request/.circleci/config.yml
Lines 3 to 5 in 3c458f1
Apart from
circleci/node:14
being a deprecated CircleCI Docker image, it is also using Node.js14
which entered end-of-life on April 30, 2023.Suggestion
Update the CircleCI workflow .circleci/config.yml to use a supported CircleCI Docker image which uses a supported version of Node.js.
The text was updated successfully, but these errors were encountered: