ci: restore depot runners (#23611)

This commit reverts the previous changes to CI jobs affected by disk
space issues on depot runners.
This commit is contained in:
Cian Johnston
2026-03-25 16:08:11 +00:00
committed by GitHub
parent 677ca9c01e
commit fb5c3b5800
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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: ubuntu-latest-16-cores
runs-on: ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-22.04' }}
permissions:
# Necessary to push docker images to ghcr.io.
packages: write
+2 -2
View File
@@ -34,7 +34,7 @@ env:
jobs:
# Only allow maintainers/admins to release.
check-perms:
runs-on: ubuntu-latest
runs-on: ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || '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: ubuntu-latest-16-cores
runs-on: ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
permissions:
# Required to publish a release
contents: write