diff --git a/.gitea/workflows/ci-pipeline.yml b/.gitea/workflows/ci-pipeline.yml index 25d1c61a3..2eec845f7 100755 --- a/.gitea/workflows/ci-pipeline.yml +++ b/.gitea/workflows/ci-pipeline.yml @@ -150,6 +150,7 @@ jobs: run: bash scripts/ci/step_timer_start.sh - name: Cache pip dependencies uses: actions/cache@v4 + continue-on-error: true with: path: /root/.cache/pip key: ${{ runner.os }}-pip-style-${{ hashFiles('requirements*.txt') }} @@ -252,6 +253,7 @@ jobs: run: bash scripts/ci/step_timer_start.sh - name: Cache pip dependencies uses: actions/cache@v4 + continue-on-error: true with: path: /root/.cache/pip key: ${{ runner.os }}-pip-security-${{ hashFiles('requirements*.txt') }} @@ -352,6 +354,7 @@ jobs: run: bash scripts/ci/step_timer_start.sh - name: Cache pip dependencies uses: actions/cache@v4 + continue-on-error: true with: path: /root/.cache/pip key: ${{ runner.os }}-pip-python-${{ hashFiles('requirements*.txt') }} @@ -456,6 +459,7 @@ jobs: run: bash scripts/ci/step_install_ffmpeg.sh - name: Cache pip dependencies uses: actions/cache@v4 + continue-on-error: true with: path: /root/.cache/pip key: ${{ runner.os }}-pip-unittests-${{ hashFiles('requirements*.txt') }} @@ -664,6 +668,7 @@ jobs: run: bash scripts/ci/step_timer_start.sh - name: Cache npm dependencies uses: actions/cache@v4 + continue-on-error: true with: path: /root/.npm key: ${{ runner.os }}-npm-vitest-${{ hashFiles('apps/web/package-lock.json') }}