Skip to content

Commit

Permalink
Update Node to 12.20.1 (#48852)
Browse files Browse the repository at this point in the history
  • Loading branch information
scinos authored Jan 14, 2021
1 parent 9c7eeee commit 94ee6c2
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ references:
defaults: &defaults
working_directory: ~/wp-calypso
docker:
- image: cimg/node:12.19.1
- image: cimg/node:12.20.1
environment:
CIRCLE_ARTIFACTS: /tmp/artifacts
CIRCLE_TEST_REPORTS: /tmp/test_results
Expand Down Expand Up @@ -811,7 +811,7 @@ jobs:

wp-desktop-linux:
docker:
- image: circleci/node:12.19.1-browsers
- image: circleci/node:12.20.1-browsers
<<: *desktop_defaults
shell: /bin/bash --login
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/editing-toolkit-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: '^12.19.1'
node-version: '^12.20.1'
- name: Checkout code
uses: actions/checkout@HEAD

Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: '12.19.1'
node-version: '12.20.1'

- name: Checkout code
uses: actions/checkout@HEAD
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/icfy-stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: '^12.19.1'
node-version: '^12.20.1'
- name: Checkout code
uses: actions/checkout@v2
- name: Fetch git history
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.19.1
12.20.1
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG use_cache=false
ARG node_version=12.19.1
ARG node_version=12.20.1

###################
FROM node:${node_version} as builder-cache-false
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.base
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#### builder image
FROM node:12.19.1 as builder
FROM node:12.20.1 as builder

ARG node_memory=8192
WORKDIR /calypso
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN cd / \
ENTRYPOINT [ "/bin/bash" ]

#### ci image
FROM node:12.19.1 as ci
FROM node:12.20.1 as ci

ARG node_memory=8192
ARG UID=1003
Expand Down
2 changes: 1 addition & 1 deletion desktop/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:latest

ARG NODE_VERSION=12.19.1
ARG NODE_VERSION=12.20.1

# prepare .ssh dir
RUN mkdir -p /root/.ssh/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
]
},
"engines": {
"node": "^v12.19.1",
"node": "^v12.20.1",
"yarn": "^1.22.10"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/wp-babel-makepot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12.19.1
FROM node:12.20.1

# /src is where we expect source javascript to run our babel config over
RUN mkdir /src
Expand Down

0 comments on commit 94ee6c2

Please sign in to comment.