Skip to content

Commit f7bc935

Browse files
authored
build(dependabot): ignore minor and patch github-actions updates (#369)
1 parent f7045d5 commit f7bc935

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
@@ -19,10 +19,10 @@ jobs:
1919
os: [macos-latest, ubuntu-latest, windows-latest]
2020

2121
steps:
22-
- uses: actions/checkout@v2.3.4
22+
- uses: actions/checkout@v2
2323

2424
- name: Use Node.js
25-
uses: actions/setup-node@v2.4.0
25+
uses: actions/setup-node@v2
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828

0 commit comments

Comments
 (0)