From d8db32ad46553cadceb59fec6a95f0f76c5ae943 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Wed, 24 Nov 2021 11:49:25 +0000 Subject: [PATCH] build(dependabot): ignore minor and patch github-actions updates --- .github/dependabot.yml | 4 ++++ .github/workflows/ci.yml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5e48d4e..e549772 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 995b63b..e3f8931 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,10 +32,10 @@ jobs: options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 steps: - - 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 }}