From 76f69c2154437555010e5582e2d40da3e9f1583d Mon Sep 17 00:00:00 2001 From: Thibaut Valentin Date: Wed, 31 Dec 2025 14:11:43 +0100 Subject: [PATCH] fix: ci cache --- .gitea/workflows/deploy_in_prod.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy_in_prod.yml b/.gitea/workflows/deploy_in_prod.yml index 9245208..484390a 100644 --- a/.gitea/workflows/deploy_in_prod.yml +++ b/.gitea/workflows/deploy_in_prod.yml @@ -15,10 +15,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v4 - name: Cache Maven packages - uses: actions/cache@v5 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -27,7 +27,7 @@ jobs: - name: Cache node modules id: cache-npm - uses: actions/cache@v5 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: -- 2.49.0