fix(ci): sostituisce gitea.com/actions/cache con github.com in tutti i workflow

gitea.com/actions/cache@v4 restituisce HTTP 500 in modo intermittente.
github.com/actions/cache@v4 già usato dal runner per altri step (setup-java, ecc.).
This commit is contained in:
LucaZanni
2026-06-06 14:05:29 +02:00
parent 0ed7e2b58a
commit 392cdf2580
9 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ jobs:
node-version: ${{ inputs.node-version || '22.17' }}
- name: Cache npm
uses: https://gitea.com/actions/cache@v4
uses: https://github.com/actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}