From c94c8f63fba6a02911e7146f2de86bd394417c22 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Thu, 12 Dec 2024 16:25:35 +0000 Subject: [PATCH] electorrent-workflow.yml: Update to actions/cache@v4 Fixes https://github.com/tympanix/Electorrent/issues/365 --- .github/workflows/electorrent-workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/electorrent-workflow.yml b/.github/workflows/electorrent-workflow.yml index 52f625a..34ba4c3 100644 --- a/.github/workflows/electorrent-workflow.yml +++ b/.github/workflows/electorrent-workflow.yml @@ -30,14 +30,14 @@ jobs: node-version: ${{ env.NODE_VERSION }} cache: 'npm' - name: Cache npm modules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | node_modules */*/node_modules key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} - name: Cache bower modules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: bower.json key: ${{ runner.os }}-${{ hashFiles('bower.json') }} @@ -68,7 +68,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} cache: 'npm' - name: Cache npm modules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | node_modules