Skip to content

Commit 46370a5

Browse files
authored
Merge pull request #193 from wagoid/chore/upgrade-deps-and-readme
chore: upgrade deps and readme
2 parents c6ec005 + e0fb983 commit 46370a5

File tree

7 files changed

+53
-13216
lines changed

7 files changed

+53
-13216
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ src/action.test.js
99
src/testUtils.js
1010
.eslintignore
1111
.eslintrc.json
12+
.nvmrc

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- uses: actions/setup-node@v2.1.5
10+
- uses: actions/setup-node@v2.2.0
1111
with:
1212
node-version: '12.x'
13-
- uses: actions/[email protected].4
13+
- uses: actions/[email protected].6
1414
with:
1515
path: |
1616
~/.npm
@@ -31,10 +31,10 @@ jobs:
3131
- uses: actions/checkout@v2
3232
with:
3333
fetch-depth: 0
34-
- uses: actions/setup-node@v2.1.5
34+
- uses: actions/setup-node@v2.2.0
3535
with:
3636
node-version: '12.x'
37-
- uses: actions/[email protected].4
37+
- uses: actions/[email protected].6
3838
with:
3939
path: |
4040
~/.npm

.github/workflows/commitlint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
fetch-depth: 0
1111
- run: sed -i -E "s/(docker:.+)/Dockerfile/" ./action.yml
1212
- run: echo -n '' > .dockerignore
13-
- uses: actions/setup-node@v2.1.5
13+
- uses: actions/setup-node@v2.2.0
1414
with:
1515
node-version: '14'
16-
- uses: actions/[email protected].4
16+
- uses: actions/[email protected].6
1717
with:
1818
path: |
1919
~/.npm
@@ -35,10 +35,10 @@ jobs:
3535
- uses: actions/checkout@v2
3636
with:
3737
fetch-depth: 0
38-
- uses: actions/setup-node@v2.1.5
38+
- uses: actions/setup-node@v2.2.0
3939
with:
4040
node-version: '14'
41-
- uses: actions/[email protected].4
41+
- uses: actions/[email protected].6
4242
with:
4343
path: |
4444
~/.npm

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v2
1818
with:
1919
fetch-depth: 0
20-
- uses: wagoid/commitlint-github-action@v3
20+
- uses: wagoid/commitlint-github-action@v4
2121
```
2222
2323
Alternatively, you can run on other event types such as `on: [push]`. In that case the action will lint the push event's commit(s) instead of linting commits from a pull request. You can also combine `push` and `pull_request` together in the same workflow.
@@ -136,13 +136,13 @@ jobs:
136136
- uses: actions/checkout@v2
137137
with:
138138
fetch-depth: 0
139-
- uses: actions/setup-node@v1
139+
- uses: actions/setup-node@v2
140140
with:
141141
node-version: '14'
142142
- run: npm install
143143
# Run the commitlint action, considering its own dependencies and yours as well 🚀
144144
# `github.workspace` is the path to your repository.
145-
- uses: wagoid/commitlint-github-action@v3
145+
- uses: wagoid/commitlint-github-action@v4
146146
env:
147147
NODE_PATH: ${{ github.workspace }}/node_modules
148148
```

0 commit comments

Comments
 (0)