fix(ci): drop the cache steps this runner cannot serve
tests / pest (push) Failing after 7m55s Details
tests / assets (push) Successful in 25s Details
tests / release (push) Has been skipped Details

actions/cache expects a cache service the runner matching Gitea 1.20 does not
speak, and it failed the job outright. It was an optimisation; the source
fallback that makes the install work is what mattered.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
feat/portal-design
nexxo 2026-07-26 01:45:11 +02:00
parent 7cd3ff33bd
commit b55a127a00
1 changed files with 0 additions and 14 deletions

View File

@ -26,13 +26,6 @@ jobs:
extensions: mbstring, pdo_sqlite, sodium, redis, bcmath, gd, zip
coverage: none
- name: Cache Composer packages
uses: actions/cache@v4.1.2
with:
path: ~/.cache/composer
key: composer-${{ hashFiles('composer.lock') }}
restore-keys: composer-
- name: Install PHP dependencies
# Dist downloads come from GitHub, which rate-limits anonymous callers —
# on a shared IP that is a coin flip. Falling back to source clones keeps
@ -59,13 +52,6 @@ jobs:
with:
node-version: '22'
- name: Cache npm packages
uses: actions/cache@v4.1.2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install JS dependencies
run: npm ci --no-fund --no-audit