Skip to content

Commit 5cea4ec

Browse files
authored
fix(ci): disable depot runners (#265)
1 parent d150951 commit 5cea4ec

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-server-docker-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212

1313
jobs:
1414
build-package:
15-
runs-on: ${{ github.repository_owner == 'coder' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
15+
runs-on: ubuntu-latest
1616
permissions:
1717
contents: read
1818
steps:
@@ -59,7 +59,7 @@ jobs:
5959
- platform: linux/arm64
6060
runner: ubuntu-24.04-arm
6161
depot_runner: depot-ubuntu-24.04-arm
62-
runs-on: ${{ github.repository_owner == 'coder' && matrix.depot_runner || matrix.runner }}
62+
runs-on: ${{ matrix.runner }}
6363
permissions:
6464
contents: read
6565
packages: write
@@ -106,7 +106,7 @@ jobs:
106106

107107
create-manifest:
108108
needs: build-image
109-
runs-on: ${{ github.repository_owner == 'coder' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
109+
runs-on: ubuntu-latest
110110
permissions:
111111
contents: read
112112
packages: write

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
ci:
11-
runs-on: ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04' || 'ubuntu-latest' }}
11+
runs-on: ubuntu-latest
1212

1313
steps:
1414
- name: Checkout code

.github/workflows/tag-server-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616

1717
jobs:
1818
tag-image:
19-
runs-on: ${{ github.repository_owner == 'coder' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
19+
runs-on: ubuntu-latest
2020
permissions:
2121
contents: read
2222
packages: write

0 commit comments

Comments
 (0)