Skip to content

Commit bdae36e

Browse files
committedNov 17, 2021
build(dependabot): ignore minor and patch github-actions updates
1 parent dcebb40 commit bdae36e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
 

‎.github/dependabot.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ version: 2
22
updates:
33
- package-ecosystem: github-actions
44
directory: '/'
5+
ignore:
6+
- dependency-name: 'actions/*'
7+
update-types:
8+
['version-update:semver-minor', 'version-update:semver-patch']
59
schedule:
610
interval: daily
711
open-pull-requests-limit: 10

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
os: [ubuntu-latest]
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v2.4.0
24+
uses: actions/checkout@v2
2525

2626
- name: Use Node.js
27-
uses: actions/setup-node@v2.4.1
27+
uses: actions/setup-node@v2
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030

0 commit comments

Comments
 (0)
Please sign in to comment.