From 1b6d06b033f47d3ecb756f03eaf10294dcda5ab5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jan 2024 20:13:49 +0900 Subject: [PATCH] chore(deps): bump actions/cache from 3 to 4 in /.github/workflows (#628) Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-test-docs.yml | 2 +- .github/workflows/deploy-pages.yml | 2 +- .github/workflows/gameci.yml | 2 +- .github/workflows/test-docs-site-build.yml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-test-docs.yml b/.github/workflows/build-test-docs.yml index c8b9368e..b44313d4 100644 --- a/.github/workflows/build-test-docs.yml +++ b/.github/workflows/build-test-docs.yml @@ -53,7 +53,7 @@ jobs: id: yarn-cache-dir-path run: echo "dir=$(cd docs~; yarn config get cacheFolder)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index f5654206..139d1bc3 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -101,7 +101,7 @@ jobs: id: yarn-cache-dir-path run: echo "dir=$(cd docs-site~; yarn config get cacheFolder)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/gameci.yml b/.github/workflows/gameci.yml index b33739ee..3ae50757 100644 --- a/.github/workflows/gameci.yml +++ b/.github/workflows/gameci.yml @@ -131,7 +131,7 @@ jobs: cat $i | jq .version done - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: ${{ steps.setup.outputs.should_test == 'true' }} with: path: Library diff --git a/.github/workflows/test-docs-site-build.yml b/.github/workflows/test-docs-site-build.yml index 487480d3..09816f38 100644 --- a/.github/workflows/test-docs-site-build.yml +++ b/.github/workflows/test-docs-site-build.yml @@ -1,4 +1,4 @@ -name: Test docs-site yarn installation +name: Test docs-site yarn installation on: push: branches: @@ -26,7 +26,7 @@ jobs: # id: yarn-cache-dir-path # run: echo "dir=$(cd docs-site~; yarn config get cacheFolder)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: false id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: