You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by ie...@apache.org on 2021/05/15 08:27:47 UTC

[avro] branch master updated: AVRO-3131: Drop support for Node.js 10 (#1212)

This is an automated email from the ASF dual-hosted git repository.

iemejia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new 36974d0  AVRO-3131: Drop support for Node.js 10 (#1212)
36974d0 is described below

commit 36974d0e87f6b1af34d3575403afd22c62b728d5
Author: Ismaël Mejía <ie...@gmail.com>
AuthorDate: Sat May 15 10:27:33 2021 +0200

    AVRO-3131: Drop support for Node.js 10 (#1212)
---
 .github/workflows/test-lang-js.yml | 4 +---
 share/docker/Dockerfile            | 4 ++--
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/test-lang-js.yml b/.github/workflows/test-lang-js.yml
index e730523..1f5bebc 100644
--- a/.github/workflows/test-lang-js.yml
+++ b/.github/workflows/test-lang-js.yml
@@ -35,7 +35,6 @@ jobs:
     strategy:
       matrix:
         node:
-        - 10
         - 12
         - 14
     steps:
@@ -64,9 +63,8 @@ jobs:
     strategy:
       matrix:
         node:
-        - 10
-        - 11
         - 12
+        - 14
     steps:
       - uses: actions/checkout@v2
       - name: Setup Node
diff --git a/share/docker/Dockerfile b/share/docker/Dockerfile
index 7a1394b..d1386a9 100644
--- a/share/docker/Dockerfile
+++ b/share/docker/Dockerfile
@@ -101,8 +101,8 @@ RUN set -eux; \
   rm "maven.tar.gz"
 ENV PATH="/opt/maven/bin:${PATH}"
 
-# Install nodejs 6
-RUN curl -sSL https://deb.nodesource.com/setup_10.x \
+# Install nodejs
+RUN curl -sSL https://deb.nodesource.com/setup_12.x \
   | bash - \
  && apt-get -qqy install nodejs \
  && apt-get -qqy clean \