Skip to content

Commit

Permalink
Merge pull request #14305 from DanielFran/skip_ci_node_14.16.0
Browse files Browse the repository at this point in the history
Update Nodejs version to 14.16.0
  • Loading branch information
DanielFran authored Mar 13, 2021
2 parents 380c900 + e4f33a2 commit 7728837
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/angular.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14.15.0]
node_version: [14.16.0]
os: [ubuntu-20.04]
cache: [angular]
app-type:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14.15.0]
node_version: [14.16.0]
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/incremental-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14.15.0]
node_version: [14.16.0]
os: [ubuntu-20.04]
app-type:
- liquibase-jdl-rename-field
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/react.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14.15.0]
node_version: [14.16.0]
os: [ubuntu-20.04]
cache: [react]
app-type:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14.15.0]
node_version: [14.16.0]
os: [ubuntu-20.04]
cache: [vue]
app-type:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/webflux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14.15.0]
node_version: [14.16.0]
os: [ubuntu-20.04]
cache: [webflux]
app-type:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN \
openjdk-11-jdk && \
update-java-alternatives -s java-1.11.0-openjdk-amd64 && \
# 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
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,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
2 changes: 1 addition & 1 deletion generators/generator-constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const { ANGULAR_X, REACT, VUE } = require('../jdl/jhipster/client-framework-type
const JAVA_VERSION = '11'; // Java version is forced to be 11. We keep the variable as it might be useful in the future.

// Version of Node, NPM
const NODE_VERSION = '14.15.0';
const NODE_VERSION = '14.16.0';
const NPM_VERSION = '7.6.3';
const OPENAPI_GENERATOR_CLI_VERSION = '1.0.13-4.3.1';

Expand Down

0 comments on commit 7728837

Please sign in to comment.