From 25feda3e26b35131d86f38babc5291916a53443e Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Wed, 17 Nov 2021 12:50:40 +0000 Subject: [PATCH] build(dependabot): ignore minor and patch github-actions updates --- .github/dependabot.yml | 6 +++++- .github/workflows/ci.yml | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4167610..60550ef 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,8 +6,12 @@ updates: interval: daily open-pull-requests-limit: 10 - - package-ecosystem: 'github-actions' + - package-ecosystem: github-actions directory: '/' + ignore: + - dependency-name: 'actions/*' + update-types: + ['version-update:semver-minor', 'version-update:semver-patch'] schedule: interval: 'daily' open-pull-requests-limit: 10 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d4f323..3cdfd1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,9 +9,9 @@ jobs: node-version: [12.x, 14.x, 16.x, 17.x] steps: - name: Checkout - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v2 - name: Use Node.js - uses: actions/setup-node@v2.4.1 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - name: Restore cached dependencies