From 8fecc9d497171fab6a5e28c09d296c6860e348f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 May 2024 13:02:52 +0000 Subject: [PATCH] build(deps): bump actions/cache from 3 to 4 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] --- .github/workflows/build_test_deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_test_deploy.yml b/.github/workflows/build_test_deploy.yml index 8c1c805f..361ddd7e 100644 --- a/.github/workflows/build_test_deploy.yml +++ b/.github/workflows/build_test_deploy.yml @@ -114,7 +114,7 @@ jobs: - name: Restore cached templateflow id: tf-cache-restore - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: /tmp/templateflow key: templateflow-v1 @@ -124,7 +124,7 @@ jobs: python -c "from templateflow.api import get; get('MNI152NLin6Asym', resolution=2, desc='LR', suffix='T1w')" - name: Save templateflow cache id: tf-cache-save - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: /tmp/templateflow key: ${{ steps.tf-cache-restore.outputs.cache-primary-key }}