From 6f682da5645994c700bf08ab019066c2f06e8c87 Mon Sep 17 00:00:00 2001 From: Ulysses Alvarez Date: Tue, 11 Feb 2025 16:37:11 +0000 Subject: [PATCH] fixing github action cache version issue. --- .github/workflows/publish.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2492543..2a4f7a3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,14 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v4.0.2 - - name: Cache Node.js modules # Add cache step - uses: actions/cache@v4.0.2 # Update to v4.0.2 of actions/cache - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- + uses: actions/checkout@v4 - name: Build and Publish uses: DEFRA/cdp-build-action/build@main