From 5eb1b5a8e3f7deb6c9c82c089276aa132caac618 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 09:21:52 +0000 Subject: [PATCH 1/2] chore(deps): bump actions/cache from 4.3.0 to 6.1.0 Bumps [actions/cache](https://github.com/actions/cache) from 4.3.0 to 6.1.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/0057852bfaa89a56745cba8c7296529d2fc39830...55cc8345863c7cc4c66a329aec7e433d2d1c52a9) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/capture-wiki-screenshots.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/e2e-quarantine.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/capture-wiki-screenshots.yml b/.github/workflows/capture-wiki-screenshots.yml index 72e8ea2f..3ccf525a 100644 --- a/.github/workflows/capture-wiki-screenshots.yml +++ b/.github/workflows/capture-wiki-screenshots.yml @@ -126,7 +126,7 @@ jobs: run: npm ci - name: Cache Playwright browsers - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.cache/ms-playwright key: playwright-${{ runner.os }}-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 466835fb..ac8d8bea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -196,7 +196,7 @@ jobs: run: npm ci - name: Cache Playwright browsers - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.cache/ms-playwright key: playwright-${{ runner.os }}-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/e2e-quarantine.yml b/.github/workflows/e2e-quarantine.yml index 9e7c1e6f..e7d3d5d1 100644 --- a/.github/workflows/e2e-quarantine.yml +++ b/.github/workflows/e2e-quarantine.yml @@ -61,7 +61,7 @@ jobs: run: npm ci - name: Cache Playwright browsers - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.cache/ms-playwright key: playwright-${{ runner.os }}-${{ hashFiles('package-lock.json') }} From 45cdecaa8c3aada72cd049ae6cd903aac2f6ee3d Mon Sep 17 00:00:00 2001 From: NesiciCoding Date: Tue, 18 Aug 2026 13:11:39 +0200 Subject: [PATCH 2/2] ci: extend supabase start timeout to tolerate slow cold starts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The local Supabase stack startup has intermittently exceeded the 5-minute step timeout on fresh hosted runners (image pulls from ghcr.io), failing CI on unrelated PRs before any test ran. Give it 10 minutes of headroom. Generated with Codebuff 🤖 Co-Authored-By: Codebuff --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac8d8bea..910d2dc4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -296,9 +296,12 @@ jobs: with: version: 2.104.0 + # Cold-starting the local stack pulls several images from ghcr.io on a + # fresh hosted runner, which has intermittently exceeded 5 minutes and + # killed the job (see PRs #449, #456, #459). Give it ample headroom. - name: Start local Supabase stack run: supabase start - timeout-minutes: 5 + timeout-minutes: 10 - name: Export Supabase credentials run: |