From 91d900c55022a9d0972c1ecdb9f5f23d04c5485b Mon Sep 17 00:00:00 2001 From: Nedimar Turatti Date: Tue, 12 Dec 2023 11:12:54 -0300 Subject: [PATCH] Use actions/cache@v3. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 87854d6..7b91d87 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache yarn cache - uses: actions/cache@v4 + uses: actions/cache@v3 id: cache-yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -35,7 +35,7 @@ jobs: - name: Cache node_modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v3 with: path: node_modules key: ${{ runner.os }}-${{ matrix.node-version }}-nodemodules-${{ hashFiles('**/yarn.lock') }}