From 7a4284a0f4a63f2d70b1b489ff37bb98d7d34a17 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 6 Aug 2024 13:33:42 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/check_ts.yaml | 2 +- .github/workflows/gen_buf.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check_ts.yaml b/.github/workflows/check_ts.yaml index 43bf25a64..544f57715 100644 --- a/.github/workflows/check_ts.yaml +++ b/.github/workflows/check_ts.yaml @@ -21,7 +21,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/gen_buf.yaml b/.github/workflows/gen_buf.yaml index 1d3ffb44d..28174103c 100644 --- a/.github/workflows/gen_buf.yaml +++ b/.github/workflows/gen_buf.yaml @@ -36,7 +36,7 @@ jobs: id: yarn-cache-dir-path run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT working-directory: ./client - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }}