fix: remove GitHub Actions cache - incompatible with Gitea Actions
Some checks failed
Basil CI/CD Pipeline / API Tests (push) Failing after 1s
Basil CI/CD Pipeline / Code Linting (push) Successful in 3m13s
Basil CI/CD Pipeline / Security Scanning (push) Failing after 1m48s
Basil CI/CD Pipeline / Shared Package Tests (push) Successful in 2m24s
Basil CI/CD Pipeline / Web Tests (push) Failing after 5m9s
Basil CI/CD Pipeline / Build All Packages (push) Has been skipped
Basil CI/CD Pipeline / E2E Tests (push) Has been skipped
Basil CI/CD Pipeline / Build & Push Docker Images (push) Has been skipped
Basil CI/CD Pipeline / Trigger Deployment (push) Has been skipped

Removed npm cache from setup-node and gha cache from Docker builds.
These cache mechanisms cause jobs to hang in Gitea Actions.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-14 07:11:53 +00:00
parent f165b9e0e1
commit 47f8370550

View File

@@ -33,7 +33,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
@@ -68,7 +67,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
@@ -109,7 +107,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
@@ -139,7 +136,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
@@ -166,7 +162,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
@@ -212,7 +207,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
@@ -262,7 +256,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
@@ -336,8 +329,6 @@ jobs:
org.opencontainers.image.created=${{ steps.meta.outputs.date }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Build and push Web image
uses: docker/build-push-action@v5
@@ -352,8 +343,6 @@ jobs:
org.opencontainers.image.created=${{ steps.meta.outputs.date }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Scan API image for vulnerabilities
run: |