Skip to content

Commit

Permalink
Update Nodejs version to 14.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielFran committed Mar 13, 2021
1 parent 3de23d0 commit b45b7de
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/angular.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14.15.0]
node_version: [14.16.0]
os: [ubuntu-latest]
app-type:
- ngx-default
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14.15.0]
node_version: [14.16.0]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/react.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14.15.0]
node_version: [14.16.0]
os: [ubuntu-latest]
app-type:
- react-default
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/webflux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14.15.0]
node_version: [14.16.0]
os: [ubuntu-latest]
app-type:
- webflux-mongodb
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
#----------------------------------------------------------------------
- task: NodeTool@0
inputs:
versionSpec: '14.15.0'
versionSpec: '14.16.0'
displayName: 'TOOLS: install Node.js'
- script: |
if [[ $JHI_JDK = '11' ]]; then
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN \
wget \
sudo && \
# install node.js
wget https://nodejs.org/dist/v14.15.0/node-v14.15.0-linux-x64.tar.gz -O /tmp/node.tar.gz && \
wget https://nodejs.org/dist/v14.16.0/node-v14.16.0-linux-x64.tar.gz -O /tmp/node.tar.gz && \
tar -C /usr/local --strip-components 1 -xzf /tmp/node.tar.gz && \
# upgrade npm
npm install -g npm && \
Expand Down Expand Up @@ -47,4 +47,4 @@ USER khipster
ENV PATH $PATH:/usr/bin
WORKDIR "/home/khipster/app"
VOLUME ["/home/khipster/app"]
CMD khipster
CMD khipster

0 comments on commit b45b7de

Please sign in to comment.