From 5a6d8c635ed34aa29018aa4be393006bacff5d85 Mon Sep 17 00:00:00 2001 From: Nulo Date: Tue, 6 Feb 2024 20:10:18 -0300 Subject: [PATCH] ci: upgrade cache --- .github/workflows/container.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index b9885ac..f64387f 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -85,7 +85,7 @@ jobs: with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/scraper - name: Cache usr/src/app/target - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: usr/src/app/target key: usr/src/app/target-${{ hashFiles('Dockerfile.scraper') }} @@ -95,7 +95,7 @@ jobs: cache-source: usr/src/app/target cache-target: /usr/src/app/target - name: Cache root/.cargo/registry - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: root/.cargo/registry key: root/.cargo/registry-${{ hashFiles('Dockerfile.scraper') }} @@ -105,7 +105,7 @@ jobs: cache-source: root/.cargo/registry cache-target: /root/.cargo/registry - name: Cache root/.cargo/git - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: root/.cargo/git key: root/.cargo/git-${{ hashFiles('Dockerfile.scraper') }}