Skip to content

Commit 9568a62

Browse files
authored
chore: upgrade github-action-merge-dependabot to v3 (#88)
1 parent 2a8d01d commit 9568a62

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,50 @@
11
name: CI
2-
3-
on:
2+
'on':
43
push:
54
paths-ignore:
6-
- 'docs/**'
5+
- docs/**
76
- '*.md'
87
pull_request:
98
paths-ignore:
10-
- 'docs/**'
9+
- docs/**
1110
- '*.md'
12-
1311
jobs:
1412
test:
1513
runs-on: ${{ matrix.os }}
16-
1714
strategy:
1815
matrix:
19-
node-version: [10, 12, 14, 16, 17]
20-
os: [macos-latest, ubuntu-latest, windows-latest]
21-
16+
node-version:
17+
- 10
18+
- 12
19+
- 14
20+
- 16
21+
- 17
22+
os:
23+
- macos-latest
24+
- ubuntu-latest
25+
- windows-latest
2226
steps:
2327
- uses: actions/checkout@v2
24-
2528
- name: Use Node.js
2629
uses: actions/setup-node@v2
2730
with:
2831
node-version: ${{ matrix.node-version }}
29-
3032
- name: Install Dependencies
3133
run: |
3234
npm install --ignore-scripts
33-
3435
- name: Lint
3536
run: |
3637
npm run lint:ci
37-
3838
- name: Run Tests
3939
run: |
4040
npm test
41-
4241
automerge:
4342
needs: test
4443
runs-on: ubuntu-latest
44+
permissions:
45+
pull-requests: write
46+
contents: write
4547
steps:
46-
- uses: fastify/github-action-merge-dependabot@v2.7.1
48+
- uses: fastify/github-action-merge-dependabot@v3
4749
with:
4850
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)