From 0f41b6ddbfe69e25e0ca3faec91f22ecaf4bbc6a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 18 Mar 2026 17:40:57 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5.0.4 --- .github/workflows/cache.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index 6d68bdb45..b65dbd8a8 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -23,7 +23,7 @@ jobs: - name: Cache Vagrant boxes id: cache-vagrant - uses: actions/cache@v5.0.3 + uses: actions/cache@v5.0.4 with: lookup-only: true #if it exists, we don't need to restore and can skip the next step path: | diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4a32ab639..9125cf00f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -22,7 +22,7 @@ jobs: cache: 'pip' # caching pip dependencies - name: Restore Ansible cache - uses: actions/cache/restore@v5.0.3 + uses: actions/cache/restore@v5.0.4 with: path: ~/.ansible/collections key: ansible-${{ hashFiles('collections/requirements.yml') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ce9eae201..bcd5d397d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -65,7 +65,7 @@ jobs: cache: 'pip' # caching pip dependencies - name: Restore vagrant Boxes cache - uses: actions/cache/restore@v5.0.3 + uses: actions/cache/restore@v5.0.4 with: path: ~/.vagrant.d/boxes key: vagrant-boxes-${{ hashFiles('**/molecule.yml') }}