From b3170af41ffb84338a8db3e2a5be302fc3a748d1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 22:33:06 +0000 Subject: [PATCH] Update actions/cache action to v4.1.0 --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 23429b6..e221946 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -114,7 +114,7 @@ jobs: uses: actions/checkout@v4.2.0 - name: "Unit test coverage cache" - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ github.workspace }}/build/jacoco/** key: ${{ runner.os }}-jacoco-unitTest-${{ github.run_id }} @@ -153,7 +153,7 @@ jobs: uses: actions/checkout@v4.2.0 - name: "Functional test coverage cache" - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ github.workspace }}/build/jacoco/** key: ${{ runner.os }}-jacoco-functionalTest-${{ github.run_id }} @@ -189,13 +189,13 @@ jobs: uses: actions/checkout@v4.2.0 - name: "Load unit test coverage cache" - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ github.workspace }}/build/jacoco/** key: ${{ runner.os }}-jacoco-unitTest-${{ github.run_id }} - name: "Load functional test coverage cache" - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ github.workspace }}/build/jacoco/** key: ${{ runner.os }}-jacoco-functionalTest-${{ github.run_id }} @@ -228,7 +228,7 @@ jobs: uses: actions/checkout@v4.2.0 - name: "Load compile cache" - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: ${{ github.workspace }}/build/** key: ${{ runner.os }}-compile-${{ github.run_id }}