Skip to content

Commit e717e22

Browse files
authored
build(dependabot): ignore minor and patch github-actions updates (#201)
1 parent f0b1a38 commit e717e22

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
os: [macos-latest, ubuntu-latest, windows-latest]
2121

2222
steps:
23-
- uses: actions/checkout@v2.3.4
23+
- uses: actions/checkout@v2
2424

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

0 commit comments

Comments
 (0)