Skip to content

Commit

Permalink
workflow:hotfix - Fixes release and publish process (#178)
Browse files Browse the repository at this point in the history
Fix node version in both workflows to v14

Signed-off-by: Wilian Gabriel <[email protected]>
(cherry picked from commit 4c35a22)
Signed-off-by: Wilian Gabriel <[email protected]>
  • Loading branch information
wiliansilvazup committed Feb 23, 2022
1 parent 0efb956 commit 69d445d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 69d445d

Please sign in to comment.