From f5838f0bcca285ebc0050cf205041e6c61abb73f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Bil=C3=ADk?= Date: Wed, 6 Mar 2024 12:26:14 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Update=20versions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update versions of nvm, node and danger. --- CHANGELOG.MD | 4 ++++ Dockerfile | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index c565c1e..1700a5e 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v2.2.0] - 2024-03-11 +### Upgraded +- Node, nvm and Danger + ## [v2.1.0] - 2024-02-23 ### Add - env variable to make Dependency-Check plugin work diff --git a/Dockerfile b/Dockerfile index 1397d48..26d7e39 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,12 +58,12 @@ ENV PATH="${PATH}:/opt/google-cloud-sdk/bin/" # nvm environment variables ENV NVM_DIR=/usr/local/nvm \ - NODE_VERSION=12.2.0 + NODE_VERSION=20.11.1 # install nvm # https://github.com/creationix/nvm#install-script RUN mkdir $NVM_DIR && \ - curl --silent -o- https://raw.githubusercontent.com/creationix/nvm/v0.37.2/install.sh | bash + curl --silent -o- https://raw.githubusercontent.com/creationix/nvm/v0.39.7/install.sh | bash RUN source $NVM_DIR/nvm.sh && \ nvm install $NODE_VERSION && \ @@ -79,7 +79,7 @@ RUN apt-get update && apt-get install -y \ make # install danger-js which is needed for danger-kotlin to work -RUN npm install -g danger@11.2.6 +RUN npm install -g danger@11.3.1 # install kotlin compiler RUN curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.8.21/kotlin-compiler-1.8.21.zip && \