diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e8d90837..77326c659 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: fetch-depth: 1 - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: "${{ env.UI_DIRECTORY }}/node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml index d57fcc5bf..2a415f3da 100644 --- a/.github/workflows/release_beta_to_dev.yaml +++ b/.github/workflows/release_beta_to_dev.yaml @@ -29,7 +29,7 @@ jobs: git fetch --depth ${{ env.FETCH_DEPTH }} --tags - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: "${{ env.UI_DIRECTORY }}/node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release_dev_to_master.yaml b/.github/workflows/release_dev_to_master.yaml index 28f4ee1e9..298bdbebf 100644 --- a/.github/workflows/release_dev_to_master.yaml +++ b/.github/workflows/release_dev_to_master.yaml @@ -31,7 +31,7 @@ jobs: run: git config --global user.name "github-actions" - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: "${{ env.UI_DIRECTORY }}/node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}