diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bdc2eeba..7f8c15659 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@v4 - name: Cache node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 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 6cf0a87fb..994f511bc 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@v3 + uses: actions/cache@v4 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 f9ae5697d..37d0e7eba 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@v3 + uses: actions/cache@v4 with: path: "${{ env.UI_DIRECTORY }}/node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}