From 5544a60b6e285c387b09229a70dd5716c84b31c6 Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Tue, 24 Mar 2026 17:19:38 +0000 Subject: [PATCH] ci: yeet depot runners in favour of GitHub runners (#23508) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Depot runners are running out of disk space and blocking builds. Temporarily switch the build and release jobs from depot runners to GitHub-hosted runners: - `ci.yaml` build job: `depot-ubuntu-22.04-8` → `ubuntu-latest` - `release.yaml` check-perms + release jobs: `depot-ubuntu-22.04-8` → `ubuntu-latest` **This is intended to be reverted once depot resolves their disk space issues.** > 🤖 This PR was created with the help of Coder Agents, and will be reviewed by my human. 🧑‍💻 --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0cc4039b3c..770efbbed0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1081,7 +1081,7 @@ jobs: needs: - changes if: (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && needs.changes.outputs.docs-only == 'false' && !github.event.pull_request.head.repo.fork - runs-on: ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-22.04' }} + runs-on: ubuntu-latest permissions: # Necessary to push docker images to ghcr.io. packages: write diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0e06cf2549..4e8568e07d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -34,7 +34,7 @@ env: jobs: # Only allow maintainers/admins to release. check-perms: - runs-on: ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }} + runs-on: ubuntu-latest steps: - name: Allow only maintainers/admins uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 @@ -61,7 +61,7 @@ jobs: release: name: Build and publish needs: [check-perms] - runs-on: ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }} + runs-on: ubuntu-latest permissions: # Required to publish a release contents: write