From feea5b06c63fdad8282b911fdc097f5ed381edc9 Mon Sep 17 00:00:00 2001 From: Victor Moura Date: Fri, 28 Mar 2025 11:31:37 -0300 Subject: [PATCH 1/2] update cache action to v4 --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 3c8e966d..eeb0e684 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -32,7 +32,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path run: 'echo "::set-output name=dir::$(yarn cache dir)"' - - uses: actions/cache@v1 + - uses: actions/cache@v4 id: yarn-cache with: path: '${{ steps.yarn-cache-dir-path.outputs.dir }}' @@ -54,7 +54,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path run: 'echo "::set-output name=dir::$(yarn cache dir)"' - - uses: actions/cache@v1 + - uses: actions/cache@v4 id: yarn-cache with: path: '${{ steps.yarn-cache-dir-path.outputs.dir }}' From d41207ca9d49ad3401cb9914414495922efd00a2 Mon Sep 17 00:00:00 2001 From: Victor Moura Date: Fri, 28 Mar 2025 11:44:12 -0300 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cc8f3b4..245dfa3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Changed + +- Udated GitHub Actions cache@v1 to cache@v4 + ## [2.140.0] - 2025-03-13 ### Added