From d894dd24311ac1a15d61d92320baf4c047824526 Mon Sep 17 00:00:00 2001 From: Victor Moura Cortez Date: Mon, 31 Mar 2025 17:21:56 -0300 Subject: [PATCH 1/2] Update actions/cache to actions/cache@v4 --- .github/workflows/pull-request.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 3c8e966..3043945 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 }}' @@ -62,4 +62,4 @@ jobs: restore-keys: | ${{ runner.os }}-yarn- - name: Lint project - uses: vtex/action-lint@master + uses: vtex/action-lint@master \ No newline at end of file From f201b78987ba3052633658b09e5b64eb9ca6c1ee Mon Sep 17 00:00:00 2001 From: Victor Moura Date: Wed, 9 Apr 2025 14:34:34 -0300 Subject: [PATCH 2/2] add changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 114a56f..eea0f63 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 + +- Update GitHub actions/cache to v4 + ## [0.8.0] - 2024-04-15 ### Added