diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67960f6..422f63b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: with: node-version: 20.x - name: Cache Node.js modules - uses: actions/cache@v4.3.0 + uses: actions/cache@v5.0.2 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node-20.x-${{ hashFiles('**/package-lock.json') }} @@ -43,7 +43,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Cache Node.js modules - uses: actions/cache@v4.3.0 + uses: actions/cache@v5.0.2 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a10a2c..b6cfc89 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: with: node-version: 20.x - name: Cache Node.js modules - uses: actions/cache@v4.3.0 + uses: actions/cache@v5.0.2 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node-20.x-${{ hashFiles('**/package-lock.json') }}