Skip to content

Commit 774c379

Browse files
authored
chore: upgrade github-action-merge-dependabot to v3 (#27)
1 parent 6a86b40 commit 774c379

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,45 @@
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.x, 12.x, 14.x]
20-
os: [macos-latest, ubuntu-latest, windows-latest]
21-
16+
node-version:
17+
- 10.x
18+
- 12.x
19+
- 14.x
20+
os:
21+
- macos-latest
22+
- ubuntu-latest
23+
- windows-latest
2224
steps:
2325
- uses: actions/[email protected]
24-
2526
- name: Use Node.js
2627
uses: actions/[email protected]
2728
with:
2829
node-version: ${{ matrix.node-version }}
29-
3030
- name: Install Dependencies
3131
run: |
3232
npm install --ignore-scripts
33-
3433
- name: Run Tests
3534
run: |
3635
npm test
37-
3836
automerge:
3937
needs: test
4038
runs-on: ubuntu-latest
39+
permissions:
40+
pull-requests: write
41+
contents: write
4142
steps:
42-
- uses: fastify/github-action-merge-dependabot@v2.7.1
43+
- uses: fastify/github-action-merge-dependabot@v3
4344
with:
44-
github-token: ${{ secrets.GITHUB_TOKEN }}
45+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)