From 69d445dc5ab350099cbdb7145d7743857c2cb267 Mon Sep 17 00:00:00 2001 From: Wilian Gabriel Date: Wed, 23 Feb 2022 08:28:14 -0300 Subject: [PATCH] workflow:hotfix - Fixes release and publish process (#178) Fix node version in both workflows to v14 Signed-off-by: Wilian Gabriel (cherry picked from commit 4c35a22892508b5f0ea6991b3f1338611a1b1945) Signed-off-by: Wilian Gabriel --- .github/workflows/publish.yml | 2 +- .github/workflows/quality.yml | 4 ++-- .github/workflows/release.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f7bf41a..ad9ac33 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,7 +31,7 @@ jobs: - name: Set up nodejs uses: actions/setup-node@v2 with: - node-version: 12 + node-version: 14 - name: Install dependencies run: | diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 96bf4a3..b574093 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -26,10 +26,10 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - - name: Set up Node 12 + - name: Set up nodejs uses: actions/setup-node@v2 with: - node-version: '12' + node-version: 14 id: node - name: Check out code uses: actions/checkout@v2 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1133afd..18a2bb3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -41,7 +41,7 @@ jobs: - name: Set up nodejs uses: actions/setup-node@v2 with: - node-version: 12 + node-version: 14 - name: Set up Go uses: actions/setup-go@v2