From c02e37862c23fbc60f6087fc56f2386e7d2dc8f2 Mon Sep 17 00:00:00 2001 From: Thibaut Valentin Date: Wed, 31 Dec 2025 14:07:37 +0100 Subject: [PATCH] fix: ci cache --- .gitea/workflows/deploy_in_prod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy_in_prod.yml b/.gitea/workflows/deploy_in_prod.yml index 17000ed..9245208 100644 --- a/.gitea/workflows/deploy_in_prod.yml +++ b/.gitea/workflows/deploy_in_prod.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v5 - name: Cache Maven packages - uses: actions/cache@v4 + uses: actions/cache@v5 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@v4 + uses: actions/cache@v5 env: cache-name: cache-node-modules with: -- 2.49.0