Skip to content

Commit

Permalink
feat: update default node version to 12.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
error418 committed Oct 24, 2020
1 parent 092b019 commit c122278
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .releaserc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ gradle:
semantic_release:
version: 17
node:
version: 10.16.3
version: 12.19.0
detect: false # try to detect system node, if found skip download evaluation.
download: true # download a node dist and use it, if it was not detected
distUrl: https://nodejs.org/dist # dist download root url (default)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class SemanticReleaseConfig {
this.branch = config.branch
this.downloadNode = config.gradle?.node?.download == true
this.autoDetectNode = config.gradle?.node?.detect ?: false
this.nodeVersion = config.gradle?.node?.version ?: '10.16.3'
this.nodeVersion = config.gradle?.node?.version ?: '12.19.0'
this.npmConfig = config.gradle?.config;
this.envVars = config.gradle?.env;
this.semanticReleaseVersion = config.gradle?.semantic_release?.version ?: "17";
Expand Down

0 comments on commit c122278

Please sign in to comment.