From 937e169a8ecb63f8b7ad14b0278d3daa9e0e9ce4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 20:40:42 +0000 Subject: [PATCH] Update actions/cache action to v4.2.0 --- .github/workflows/run.yaml | 2 +- .github/workflows/test.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run.yaml b/.github/workflows/run.yaml index 6c0859d..ed8e8f0 100644 --- a/.github/workflows/run.yaml +++ b/.github/workflows/run.yaml @@ -52,7 +52,7 @@ jobs: fetch-depth: 100 - id: postgres run: echo "commit=$(git -C source rev-parse --short HEAD)" >> "$GITHUB_OUTPUT" - - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 + - uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 with: path: build key: run-alpine-${{ matrix.builder }}-${{ matrix.branch }}-${{ steps.postgres.outputs.commit }} diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 86693c5..8e35ca1 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -38,7 +38,7 @@ jobs: path: source - id: postgres run: echo "commit=$(git -C source rev-parse --short HEAD)" >> "$GITHUB_OUTPUT" - - uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 + - uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 id: restore-cache with: path: build @@ -60,7 +60,7 @@ jobs: name: ${{ matrix.builder }}-logs path: build/**/*.log if-no-files-found: error - - uses: actions/cache/save@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 + - uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 if: github.ref == 'refs/heads/main' with: path: build