File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ v2.2.0] - 2024-03-11
8+ ### Upgraded
9+ - Node, nvm and Danger
10+
711## [ v2.1.0] - 2024-02-23
812### Add
913- env variable to make Dependency-Check plugin work
Original file line number Diff line number Diff line change @@ -58,12 +58,12 @@ ENV PATH="${PATH}:/opt/google-cloud-sdk/bin/"
5858
5959# nvm environment variables
6060ENV NVM_DIR=/usr/local/nvm \
61- NODE_VERSION=12.2.0
61+ NODE_VERSION=20.11.1
6262
6363# install nvm
6464# https://github.com/creationix/nvm#install-script
6565RUN mkdir $NVM_DIR && \
66- curl --silent -o- https://raw.githubusercontent.com/creationix/nvm/v0.37.2 /install.sh | bash
66+ curl --silent -o- https://raw.githubusercontent.com/creationix/nvm/v0.39.7 /install.sh | bash
6767
6868RUN source $NVM_DIR/nvm.sh && \
6969 nvm install $NODE_VERSION && \
@@ -79,7 +79,7 @@ RUN apt-get update && apt-get install -y \
7979 make
8080
8181# install danger-js which is needed for danger-kotlin to work
82- RUN npm install -g danger@11.2.6
82+ RUN npm install -g danger@11.3.1
8383
8484# install kotlin compiler
8585RUN curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v1.8.21/kotlin-compiler-1.8.21.zip && \
You can’t perform that action at this time.
0 commit comments