Skip to content

Commit b38b100

Browse files
authored
chore: upgrade github-action-merge-dependabot to v3 (#127)
1 parent 09f328e commit b38b100

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,51 @@
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: ubuntu-latest
16-
1714
strategy:
1815
matrix:
19-
node-version: [10, 12, 14, 16]
20-
redis-tag: [5, 6]
16+
node-version:
17+
- 10
18+
- 12
19+
- 14
20+
- 16
21+
redis-tag:
22+
- 5
23+
- 6
2124
services:
2225
redis:
2326
image: redis:${{ matrix.redis-tag }}
2427
ports:
25-
- 6379:6379
26-
options: --entrypoint redis-server
28+
- '6379:6379'
29+
options: '--entrypoint redis-server'
2730
steps:
2831
- uses: actions/checkout@v2
29-
3032
- name: Use Node.js
3133
uses: actions/setup-node@v2
3234
with:
33-
node-version: ${{ matrix.node-version }}
34-
35+
node-version: ${{ matrix.node-version }}
3536
- name: Install Dependencies
3637
run: |
3738
npm install --ignore-scripts
38-
3939
- name: Run Tests
4040
run: |
4141
npm test
42-
4342
automerge:
4443
needs: test
4544
runs-on: ubuntu-latest
45+
permissions:
46+
pull-requests: write
47+
contents: write
4648
steps:
47-
- uses: fastify/github-action-merge-dependabot@v2.7.1
49+
- uses: fastify/github-action-merge-dependabot@v3
4850
with:
4951
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)