@@ -120,7 +120,7 @@ jobs:
120
120
update-flake :
121
121
needs : changes
122
122
if : needs.changes.outputs.gomod == 'true'
123
- runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8 ' || 'ubuntu-latest' }}
123
+ runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
124
124
steps :
125
125
- name : Checkout
126
126
uses : actions/checkout@v4
@@ -139,7 +139,7 @@ jobs:
139
139
lint :
140
140
needs : changes
141
141
if : needs.changes.outputs.offlinedocs-only == 'false' || needs.changes.outputs.ci == 'true' || github.ref == 'refs/heads/main'
142
- runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8 ' || 'ubuntu-latest' }}
142
+ runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
143
143
steps :
144
144
- name : Checkout
145
145
uses : actions/checkout@v4
@@ -193,7 +193,7 @@ jobs:
193
193
194
194
gen :
195
195
timeout-minutes : 8
196
- runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8 ' || 'ubuntu-latest' }}
196
+ runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
197
197
needs : changes
198
198
if : needs.changes.outputs.docs-only == 'false' || needs.changes.outputs.ci == 'true' || github.ref == 'refs/heads/main'
199
199
steps :
@@ -243,7 +243,7 @@ jobs:
243
243
fmt :
244
244
needs : changes
245
245
if : needs.changes.outputs.offlinedocs-only == 'false' || needs.changes.outputs.ci == 'true' || github.ref == 'refs/heads/main'
246
- runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8 ' || 'ubuntu-latest' }}
246
+ runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
247
247
timeout-minutes : 7
248
248
steps :
249
249
- name : Checkout
@@ -329,7 +329,7 @@ jobs:
329
329
api-key : ${{ secrets.DATADOG_API_KEY }}
330
330
331
331
test-go-pg :
332
- runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8 ' || 'ubuntu-latest' }}
332
+ runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
333
333
needs :
334
334
- changes
335
335
if : needs.changes.outputs.go == 'true' || needs.changes.outputs.ci == 'true' || github.ref == 'refs/heads/main'
@@ -364,7 +364,7 @@ jobs:
364
364
api-key : ${{ secrets.DATADOG_API_KEY }}
365
365
366
366
test-go-race :
367
- runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8 ' || 'ubuntu-latest' }}
367
+ runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
368
368
needs : changes
369
369
if : needs.changes.outputs.go == 'true' || needs.changes.outputs.ci == 'true' || github.ref == 'refs/heads/main'
370
370
timeout-minutes : 25
@@ -399,7 +399,7 @@ jobs:
399
399
# These tests are skipped in the main go test jobs because they require root
400
400
# and mess with networking.
401
401
test-go-tailnet-integration :
402
- runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8 ' || 'ubuntu-latest' }}
402
+ runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
403
403
needs : changes
404
404
# Unnecessary to run on main for now
405
405
if : needs.changes.outputs.tailnet-integration == 'true' || needs.changes.outputs.ci == 'true'
@@ -421,7 +421,7 @@ jobs:
421
421
run : make test-tailnet-integration
422
422
423
423
test-js :
424
- runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8 ' || 'ubuntu-latest' }}
424
+ runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
425
425
needs : changes
426
426
if : needs.changes.outputs.ts == 'true' || needs.changes.outputs.ci == 'true' || github.ref == 'refs/heads/main'
427
427
timeout-minutes : 20
@@ -582,7 +582,7 @@ jobs:
582
582
offlinedocs :
583
583
name : offlinedocs
584
584
needs : changes
585
- runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8 ' || 'ubuntu-latest' }}
585
+ runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
586
586
if : needs.changes.outputs.offlinedocs == 'true' || needs.changes.outputs.ci == 'true' || needs.changes.outputs.docs == 'true'
587
587
588
588
steps :
@@ -684,7 +684,7 @@ jobs:
684
684
# are for amd64)
685
685
needs : changes
686
686
if : github.ref == 'refs/heads/main' && needs.changes.outputs.docs-only == 'false' && !github.event.pull_request.head.repo.fork
687
- runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8 ' || 'ubuntu-latest' }}
687
+ runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
688
688
env :
689
689
DOCKER_CLI_EXPERIMENTAL : " enabled"
690
690
outputs :
@@ -890,7 +890,7 @@ jobs:
890
890
# runs sqlc-vet to ensure all queries are valid. This catches any mistakes
891
891
# in migrations or sqlc queries that makes a query unable to be prepared.
892
892
sqlc-vet :
893
- runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8 ' || 'ubuntu-latest' }}
893
+ runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
894
894
needs : changes
895
895
if : needs.changes.outputs.db == 'true' || needs.changes.outputs.ci == 'true' || github.ref == 'refs/heads/main'
896
896
steps :
0 commit comments