Parcourir la source

Merge pull request #269 from nameczz/dev

fix action node version
nameczz il y a 3 ans
Parent
commit
ec35d9b9bd
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      .github/workflows/dev.yml
  2. 1 1
      .github/workflows/release.yml

+ 1 - 1
.github/workflows/dev.yml

@@ -14,7 +14,7 @@ jobs:
       - name: Setup Node.js
         uses: actions/setup-node@v1
         with:
-          node-version: 12
+          node-version: 14
 
       - name: Run Express tests
         run: |

+ 1 - 1
.github/workflows/release.yml

@@ -13,7 +13,7 @@ jobs:
       - name: Setup Node.js
         uses: actions/setup-node@v1
         with:
-          node-version: 12
+          node-version: 14
 
       - name: Login to DockerHub
         uses: docker/login-action@v1