-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We use Node 14 when building the Docker image for this repo, which [causes CI to fail](https://github.com/cowprotocol/contracts/actions/runs/4676227785/jobs/8282347632) after the latest dependency updates. Node 14 leaves maintenance mode this month (see [release schedule](https://nodejs.dev/en/about/releases/)) and is then technically unsupported. Version 16 will be unsupported by October this year as well. This PR switches all versions of Node in CI to 18. ### Test Plan CI and `docker build -f src/docker/Dockerfile .`.
- Loading branch information
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:14-alpine3.13 | ||
FROM node:18-alpine3.17 | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app/ | ||
|