diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a1eee02d9..4b798a411 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: run: | echo "::set-output name=dir::$(npm config get cache)" - name: Setup npm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9f552c2b9..c163bf1b6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -25,7 +25,7 @@ jobs: run: | echo "::set-output name=dir::$(npm config get cache)" - name: Setup npm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index c93f17056..6e7e87e7e 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -28,7 +28,7 @@ jobs: run: | echo "::set-output name=dir::$(npm config get cache)" - name: Setup npm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 39afc2220..e6ae5fa29 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -30,7 +30,7 @@ jobs: run: | echo "::set-output name=dir::$(npm config get cache)" - name: Setup npm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 67bfe78b5..8569a555d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: run: | echo "::set-output name=dir::$(npm config get cache)" - name: Setup npm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}