Skip to content
This repository was archived by the owner on Jun 21, 2024. It is now read-only.

Commit 92018ab

Browse files
authored
Use Depot runners (#16)
1 parent 1ac549d commit 92018ab

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/docker-capture.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
build:
1414
name: build and publish capture image
15-
runs-on: buildjet-4vcpu-ubuntu-2204-arm
15+
runs-on: depot-ubuntu-22.04-4
1616
permissions:
1717
id-token: write # allow issuing OIDC tokens for this workflow run
1818
contents: read # allow reading the repo contents

.github/workflows/docker-hook-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
build:
1414
name: build and publish hook-api image
15-
runs-on: buildjet-4vcpu-ubuntu-2204-arm
15+
runs-on: depot-ubuntu-22.04-4
1616
permissions:
1717
id-token: write # allow issuing OIDC tokens for this workflow run
1818
contents: read # allow reading the repo contents

.github/workflows/docker-hook-janitor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
build:
1414
name: build and publish hook-janitor image
15-
runs-on: buildjet-4vcpu-ubuntu-2204-arm
15+
runs-on: depot-ubuntu-22.04-4
1616
permissions:
1717
id-token: write # allow issuing OIDC tokens for this workflow run
1818
contents: read # allow reading the repo contents

.github/workflows/docker-hook-worker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
build:
1414
name: build and publish hook-worker image
15-
runs-on: buildjet-4vcpu-ubuntu-2204-arm
15+
runs-on: depot-ubuntu-22.04-4
1616
permissions:
1717
id-token: write # allow issuing OIDC tokens for this workflow run
1818
contents: read # allow reading the repo contents

.github/workflows/docker-migrator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
build:
1414
name: build and publish hook-migrator image
15-
runs-on: buildjet-4vcpu-ubuntu-2204-arm
15+
runs-on: depot-ubuntu-22.04-4
1616
permissions:
1717
id-token: write # allow issuing OIDC tokens for this workflow run
1818
contents: read # allow reading the repo contents

.github/workflows/rust.yml

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

1313
jobs:
1414
build:
15-
runs-on: buildjet-4vcpu-ubuntu-2204
15+
runs-on: depot-ubuntu-22.04-4
1616

1717
steps:
1818
- uses: actions/checkout@v3
@@ -34,7 +34,7 @@ jobs:
3434
run: cargo build --all --locked --release && find target/release/ -maxdepth 1 -executable -type f | xargs strip
3535

3636
test:
37-
runs-on: buildjet-4vcpu-ubuntu-2204
37+
runs-on: depot-ubuntu-22.04-4
3838
timeout-minutes: 10
3939

4040
steps:
@@ -72,7 +72,7 @@ jobs:
7272
run: cargo check --all-features
7373

7474
clippy:
75-
runs-on: buildjet-4vcpu-ubuntu-2204
75+
runs-on: depot-ubuntu-22.04-4
7676

7777
steps:
7878
- uses: actions/checkout@v3
@@ -95,7 +95,7 @@ jobs:
9595
run: cargo clippy -- -D warnings
9696

9797
format:
98-
runs-on: buildjet-4vcpu-ubuntu-2204
98+
runs-on: depot-ubuntu-22.04-4
9999

100100
steps:
101101
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)