From 366b558b5de1b97e984761f00b05dd895fd7e93c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 18:15:36 -0300 Subject: [PATCH] ci(deps): update actions/cache action to v4 (#2036) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/nightly.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/release.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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') }}