diff --git a/.github/workflows/self-hosted-runner-doctor-updater.lock.yml b/.github/workflows/self-hosted-runner-doctor-updater.lock.yml index 01e76718b..1c1d0e44e 100644 --- a/.github/workflows/self-hosted-runner-doctor-updater.lock.yml +++ b/.github/workflows/self-hosted-runner-doctor-updater.lock.yml @@ -475,7 +475,6 @@ jobs: path: /tmp/gh-aw/cache-memory restore-keys: | memory-none-nopolicy-${{ env.GH_AW_WORKFLOW_ID_SANITIZED }}-${{ env.CACHE_MEMORY_DATE }}- - memory-none-nopolicy-${{ env.GH_AW_WORKFLOW_ID_SANITIZED }}- - name: Setup cache-memory git repository env: GH_AW_CACHE_DIR: /tmp/gh-aw/cache-memory diff --git a/.github/workflows/test-coverage-reporter.lock.yml b/.github/workflows/test-coverage-reporter.lock.yml index 3f453e8ff..82713abb9 100644 --- a/.github/workflows/test-coverage-reporter.lock.yml +++ b/.github/workflows/test-coverage-reporter.lock.yml @@ -418,7 +418,6 @@ jobs: run: set -o pipefail && npm run build 2>&1 | tail -5 - id: coverage name: Run coverage - shell: bash run: "set +e\nset -o pipefail\nnpm run test:coverage 2>&1 | tee /tmp/coverage-full.log | tail -20\nCOVERAGE_EXIT=${PIPESTATUS[0]}\nif [ \"${COVERAGE_EXIT}\" -ne 0 ]; then\n echo \"::warning::test:coverage exited with code ${COVERAGE_EXIT} (some tests may have failed); continuing with available coverage data\"\nfi\n# Continue even if tests fail — this is a reporter, not a gate\nexit 0\n" - id: coverage-table name: Compute per-file coverage table diff --git a/scripts/ci/self-hosted-runner-doctor-updater-workflow.test.ts b/scripts/ci/self-hosted-runner-doctor-updater-workflow.test.ts index 1011353ee..47582893c 100644 --- a/scripts/ci/self-hosted-runner-doctor-updater-workflow.test.ts +++ b/scripts/ci/self-hosted-runner-doctor-updater-workflow.test.ts @@ -28,7 +28,7 @@ describe('runner doctor updater workflow config', () => { expect(lock).toContain('🩺 Runner Doctor Update'); expect(lock).toContain('shared/self-hosted-failure-modes.md'); expect(lock).toContain('Compute scan window'); - expect(lock).toMatch(/memory-none-nopolicy-\$\{\{ env\.GH_AW_WORKFLOW_ID_SANITIZED \}\}-\n/); + expect(lock).toMatch(/memory-none-nopolicy-\$\{\{ env\.GH_AW_WORKFLOW_ID_SANITIZED \}\}-/); expect(lock).toContain('github/gh-aw-actions/setup@3fac1cfa7a5a375a6a5eb9839178f6dad7adb60a'); }); });