From 04e2b281975e7183907fb09006ae719d8eb5dc6a Mon Sep 17 00:00:00 2001 From: "red-hat-konflux[bot]" <126015336+red-hat-konflux[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 09:29:51 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eec22d69..0beace55 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: node-version: 20 cache: 'npm' # cache node modules for all jobs to use - - uses: actions/cache@v3 + - uses: actions/cache@v5 id: node_modules-cache with: path: | @@ -40,13 +40,13 @@ jobs: node-version: 20 cache: 'npm' # consume installed modules - - uses: actions/cache@v3 + - uses: actions/cache@v5 id: node_modules-cache with: path: "**/node_modules" key: install-cache-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} # custom cypress cache, caches cypress and cypress webpack node module dependencies based on lock file - - uses: actions/cache@v3 + - uses: actions/cache@v5 id: cypress-cache with: path: |