Skip to content

Commit 445e494

Browse files
committed
fix: workflows
1 parent f9e17d2 commit 445e494

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/create-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ name: Github CI - Create release
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [master]
66

77
jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
12-
- name: Set up Node.js 12.x
13-
uses: actions/setup-node@v1
11+
- uses: actions/checkout@v3
12+
- name: Set up Node.js 16.x
13+
uses: actions/setup-node@v3
1414
with:
15-
node-version: '12.x'
15+
node-version: '16.x'
1616
registry-url: 'https://registry.npmjs.org'
1717
# This step provides me the information about package (version) from package.json.
1818
- name: Grant access to bash scripts

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- name: Set up Node.js 12.x
14-
uses: actions/setup-node@v1
12+
- uses: actions/checkout@v3
13+
- name: Set up Node.js 16.x
14+
uses: actions/setup-node@v3
1515
with:
16-
node-version: '12.x'
16+
node-version: '16.x'
1717
registry-url: 'https://registry.npmjs.org'
1818
- name: Installing dependecies with yarn
1919
run: yarn install

0 commit comments

Comments
 (0)