From adf3e5e6612e709c65e8edabae6b54590ca46c4d Mon Sep 17 00:00:00 2001 From: Garmelon Date: Thu, 26 Feb 2026 18:18:52 +0100 Subject: [PATCH] chore: stop using cached namespace.so checkout (#12714) The namespace cache volumes were running out of space and preventing CI from running. --- .github/workflows/build-template.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/build-template.yml b/.github/workflows/build-template.yml index 05ce7649a8..eccc83404d 100644 --- a/.github/workflows/build-template.yml +++ b/.github/workflows/build-template.yml @@ -66,16 +66,10 @@ jobs: brew install ccache tree zstd coreutils gmp libuv if: runner.os == 'macOS' - name: Checkout - if: (!endsWith(matrix.os, '-with-cache')) uses: actions/checkout@v6 with: # the default is to use a virtual merge commit between the PR and master: just use the PR ref: ${{ github.event.pull_request.head.sha }} - - name: Namespace Checkout - if: endsWith(matrix.os, '-with-cache') - uses: namespacelabs/nscloud-checkout-action@v8 - with: - ref: ${{ github.event.pull_request.head.sha }} - name: Open Nix shell once run: true if: runner.os == 'Linux'