From 2db3858762d8ffcf2d5e7928d01a2545f6415724 Mon Sep 17 00:00:00 2001 From: isaak654 Date: Tue, 23 Aug 2022 13:30:52 +0200 Subject: [PATCH] Ignore patch updates for actions/cache --- .github/dependabot.yml | 4 ++++ .github/workflows/main.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6a44e4ea..84a4dbad 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,3 +8,7 @@ updates: # Check for updates to GitHub Actions interval: "weekly" day: "tuesday" + ignore: + # Ignore patch updates for actions/cache + - dependency-name: "actions/cache" + update-types: ["version-update:semver-patch"] diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3c8a6c35..5ec45507 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,7 +43,7 @@ jobs: - name: Cache Qt id: cache-qt - uses: actions/cache@v3.0.8 + uses: actions/cache@v3 with: path: ${{ runner.workspace }}\Qt key: Qt-5.15.2-QtCache