From c0c760ecff08ebe638211b8e5f04be7bcf18d27c Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Wed, 17 Nov 2021 11:13:32 +0000 Subject: [PATCH] build(dependabot): ignore minor and patch github-actions updates --- .github/dependabot.yml | 4 ++++ .github/workflows/ci.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 47a54f3..e50fb48 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,6 +2,10 @@ version: 2 updates: - 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 48dd2e7..cceb74d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - 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 }}