From 161a8bbf72765029421d61dd630583297a00b72f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 23:02:37 +0000 Subject: [PATCH] Update actions/cache action to v4.1.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 fdfcd1d..9f7e5cb 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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 + - uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.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 00921ed..a4e4a1d 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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 + - uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 + - uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0 if: github.ref == 'refs/heads/main' with: path: build