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') }}
+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') }}
+1 -1
View File
@@ -30,7 +30,7 @@ jobs:
run: npm install -g npm@${{ inputs.npm-version }}
- 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') }}
+1 -1
View File
@@ -20,7 +20,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') }}
+1 -1
View File
@@ -30,7 +30,7 @@ jobs:
python-version: ${{ inputs.python-version || '3.11' }}
- name: Cache pip
uses: https://gitea.com/actions/cache@v4
uses: https://github.com/actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ inputs.python-version }}-${{ hashFiles('**/pyproject.toml', '**/requirements*.txt') }}
@@ -30,7 +30,7 @@ jobs:
python-version: ${{ inputs.python-version || '3.11' }}
- name: Cache pip
uses: https://gitea.com/actions/cache@v4
uses: https://github.com/actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ inputs.python-version }}-${{ hashFiles('**/pyproject.toml', '**/requirements*.txt') }}
+1 -1
View File
@@ -38,7 +38,7 @@ jobs:
python-version: ${{ inputs.python-version || '3.11' }}
- name: Cache pip
uses: https://gitea.com/actions/cache@v4
uses: https://github.com/actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ inputs.python-version }}-${{ hashFiles('**/pyproject.toml', '**/requirements*.txt') }}
+1 -1
View File
@@ -31,7 +31,7 @@ jobs:
python-version: ${{ inputs.python-version || '3.11' }}
- name: Cache pip
uses: https://gitea.com/actions/cache@v4
uses: https://github.com/actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ inputs.python-version }}-${{ hashFiles('**/pyproject.toml', '**/requirements*.txt') }}
+1 -1
View File
@@ -27,7 +27,7 @@ jobs:
run: npm install -g npm@${{ inputs.npm-version }}
- 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') }}