Skip to content

Commit 045e50f

Browse files
committed
adds depot runners
1 parent 591c30e commit 045e50f

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/cla.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on: # yamllint disable-line rule:truthy
1414
jobs:
1515
cla:
1616
name: "Check Signature"
17-
runs-on: "buildjet-2vcpu-ubuntu-2204"
17+
runs-on: "ubuntu-latest"
1818
steps:
1919
- uses: "authzed/actions/cla-check@main"
2020
with:

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- "*"
1010
jobs:
1111
paths-filter:
12-
runs-on: "buildjet-2vcpu-ubuntu-2204"
12+
runs-on: "depot-ubuntu-24.04-small"
1313
outputs:
1414
codechange: "${{ steps.code-filter.outputs.codechange }}"
1515
steps:
@@ -26,13 +26,13 @@ jobs:
2626
- buf.gen.yaml
2727
test:
2828
name: Lint and Test
29-
runs-on: "buildjet-2vcpu-ubuntu-2204"
29+
runs-on: "depot-ubuntu-24.04-small"
3030
strategy:
3131
matrix:
3232
node-version: [18, 20, 21]
3333
needs: "paths-filter"
3434
if: |
35-
needs.paths-filter.outputs.codechange == 'true'
35+
needs.paths-filter.outputs.codechange == 'false'
3636
steps:
3737
- uses: actions/checkout@v4
3838
- uses: "authzed/action-spicedb@v1"
@@ -52,13 +52,13 @@ jobs:
5252
run: CI=true yarn only-run-tests
5353
build-js-client:
5454
name: Build and Test JS client
55-
runs-on: "buildjet-2vcpu-ubuntu-2204"
55+
runs-on: "depot-ubuntu-24.04-small"
5656
strategy:
5757
matrix:
5858
node-version: [18, 20, 21]
5959
needs: "paths-filter"
6060
if: |
61-
needs.paths-filter.outputs.codechange == 'true'
61+
needs.paths-filter.outputs.codechange == 'false'
6262
steps:
6363
- uses: actions/checkout@v4
6464
- uses: "authzed/action-spicedb@v1"

0 commit comments

Comments
 (0)