From ab586e285f655ee70f33029f55760ba504ab5744 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 18:09:15 +0100 Subject: [PATCH] Bump actions/cache from 3 to 4 (#3095) 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.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0e46d78fe..f2c1ea7ad 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -233,7 +233,7 @@ jobs: sudo chown -R runner:runner /mnt/cache - name: "Restore cache: object files" - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: /mnt/cache/cc key: haos-cc-${{ matrix.board.id }} @@ -288,7 +288,7 @@ jobs: - name: "Save cache: object files" if: github.ref == 'refs/heads/dev' - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: /mnt/cache/cc key: haos-cc-${{ matrix.board.id }}-${{ github.run_id }}