From 7820bbff5b76aa141eb17c2343f237d2775225d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 19:05:11 +0000 Subject: [PATCH] Bump actions/cache from 4.1.2 to 4.2.0 in /actions/run-scripted-build (#94) Bumps [actions/cache](https://github.com/actions/cache) from 4.1.2 to 4.2.0. - [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/6849a6489940f00c2f30c0fb92c6274307ccb58a...1bd1e32a3bdc45362d1e726936510720a7c30a57) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- actions/run-scripted-build/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/run-scripted-build/action.yml b/actions/run-scripted-build/action.yml index 865db42..e1e99d8 100644 --- a/actions/run-scripted-build/action.yml +++ b/actions/run-scripted-build/action.yml @@ -97,7 +97,7 @@ runs: - name: Restore Cached Inputs if: inputs.inputCachePaths != '' id: cache_inputs_restore - uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 + uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 with: path: ${{ inputs.inputCachePaths }} key: build-state-${{ github.sha }} @@ -124,7 +124,7 @@ runs: - name: Save Cached Outputs id: cache_outputs_save if: inputs.outputCachePaths - uses: actions/cache/save@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 + uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 with: path: ${{ inputs.outputCachePaths }} key: build-state-${{ github.sha }}