Skip to content

Commit 9f963c7

Browse files
authored
Update Node to 12.18.4 (#2175)
1 parent 8063c79 commit 9f963c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/images/centos7/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM centos:7
22

3-
ARG NODE_VERSION=v12.18.3
3+
ARG NODE_VERSION=v12.18.4
44
RUN ARCH="$(uname -m | sed 's/86_64/64/; s/aarch64/arm64/')" && \
55
curl -fsSL "https://nodejs.org/dist/$NODE_VERSION/node-$NODE_VERSION-linux-$ARCH.tar.xz" | tar -C /usr/local -xJ && \
66
mv "/usr/local/node-$NODE_VERSION-linux-$ARCH" "/usr/local/node-$NODE_VERSION"

ci/steps/release-packages.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euo pipefail
44
main() {
55
cd "$(dirname "$0")/../.."
66

7-
NODE_VERSION=v12.18.3
7+
NODE_VERSION=v12.18.4
88
NODE_OS="$(uname | tr '[:upper:]' '[:lower:]')"
99
NODE_ARCH="$(uname -m | sed 's/86_64/64/; s/aarch64/arm64/')"
1010
curl -L "https://nodejs.org/dist/$NODE_VERSION/node-$NODE_VERSION-$NODE_OS-$NODE_ARCH.tar.gz" | tar -xz

0 commit comments

Comments
 (0)