Update Node to 12.16.1

pull/16806/head
Diego Sampaio 6 years ago
parent 490bc965a7
commit d112e3ea22
No known key found for this signature in database
GPG Key ID: E060152B30502562
  1. 2
      .docker-mongo/Dockerfile
  2. 2
      .docker/Dockerfile
  3. 10
      .github/workflows/build_and_test.yml
  4. 2
      .snapcraft/resources/preparenode

@ -1,4 +1,4 @@
FROM rocketchat/base:12.14.0
FROM rocketchat/base:12.16.1
LABEL maintainer="buildmaster@rocket.chat"

@ -1,4 +1,4 @@
FROM rocketchat/base:12.14.0
FROM rocketchat/base:12.16.1
ADD . /app

@ -29,10 +29,10 @@ jobs:
echo "github.event_name: ${{ github.event_name }}"
cat $GITHUB_EVENT_PATH
- name: Use Node.js 12.14.0
- name: Use Node.js 12.16.1
uses: actions/setup-node@v1
with:
node-version: "12.14.0"
node-version: "12.16.1"
- uses: actions/checkout@v1
@ -164,7 +164,7 @@ jobs:
strategy:
matrix:
node-version: ["12.14.0"]
node-version: ["12.16.1"]
mongodb-version: ["3.4", "3.6", "4.0"]
steps:
@ -269,10 +269,10 @@ jobs:
path: ~/.meteor
key: ${{ runner.OS }}-meteor-${{ hashFiles('.meteor/release') }}-${{ hashFiles('.github/workflows/build_and_test.yml') }}
- name: Use Node.js 12.14.0
- name: Use Node.js 12.16.1
uses: actions/setup-node@v1
with:
node-version: "12.14.0"
node-version: "12.16.1"
- name: Install Meteor
run: |

@ -1,6 +1,6 @@
#!/bin/bash
node_version="v12.14.0"
node_version="v12.16.1"
unamem="$(uname -m)"
if [[ $unamem == *aarch64* ]]; then

Loading…
Cancel
Save