From dcb2bde0b2807e28f6041a4ee931d0ae4fbdf8db Mon Sep 17 00:00:00 2001 From: george haff Date: Wed, 19 Mar 2025 22:52:57 -0400 Subject: [PATCH] update gh 'actions/cache' away from deprecated version --- .github/workflows/ci.yml | 2 +- .github/workflows/release_main.yml | 4 ++-- .github/workflows/update_gdocs_data.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 791c26c2..dc2f48e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: with: node-version: 18 - name: Cache Node.js modules - uses: actions/cache@v4.0.1 + uses: actions/cache@v4 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release_main.yml b/.github/workflows/release_main.yml index 49414e70..0aac45fb 100644 --- a/.github/workflows/release_main.yml +++ b/.github/workflows/release_main.yml @@ -47,7 +47,7 @@ jobs: with: node-version: 18 - name: Cache Node.js modules - uses: actions/cache@v4.0.1 + uses: actions/cache@v4 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }} @@ -78,7 +78,7 @@ jobs: with: node-version: 18 - name: Cache Node.js modules - uses: actions/cache@v4.0.1 + uses: actions/cache@v4 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-main-node2-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/update_gdocs_data.yml b/.github/workflows/update_gdocs_data.yml index 5e2582a4..7f9e9fdb 100644 --- a/.github/workflows/update_gdocs_data.yml +++ b/.github/workflows/update_gdocs_data.yml @@ -13,7 +13,7 @@ jobs: with: node-version: 18 - name: Cache Node.js modules - uses: actions/cache@v4.0.1 + uses: actions/cache@v4 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}