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

Use Depot runners #16

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-capture.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
build:
name: build and publish capture image
runs-on: buildjet-4vcpu-ubuntu-2204-arm
runs-on: depot-ubuntu-22.04-4
permissions:
id-token: write # allow issuing OIDC tokens for this workflow run
contents: read # allow reading the repo contents
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-hook-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
build:
name: build and publish hook-api image
runs-on: buildjet-4vcpu-ubuntu-2204-arm
runs-on: depot-ubuntu-22.04-4
permissions:
id-token: write # allow issuing OIDC tokens for this workflow run
contents: read # allow reading the repo contents
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-hook-janitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
build:
name: build and publish hook-janitor image
runs-on: buildjet-4vcpu-ubuntu-2204-arm
runs-on: depot-ubuntu-22.04-4
permissions:
id-token: write # allow issuing OIDC tokens for this workflow run
contents: read # allow reading the repo contents
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-hook-worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
build:
name: build and publish hook-worker image
runs-on: buildjet-4vcpu-ubuntu-2204-arm
runs-on: depot-ubuntu-22.04-4
permissions:
id-token: write # allow issuing OIDC tokens for this workflow run
contents: read # allow reading the repo contents
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-migrator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
build:
name: build and publish hook-migrator image
runs-on: buildjet-4vcpu-ubuntu-2204-arm
runs-on: depot-ubuntu-22.04-4
permissions:
id-token: write # allow issuing OIDC tokens for this workflow run
contents: read # allow reading the repo contents
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
build:
runs-on: buildjet-4vcpu-ubuntu-2204
runs-on: depot-ubuntu-22.04-4

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

test:
runs-on: buildjet-4vcpu-ubuntu-2204
runs-on: depot-ubuntu-22.04-4
timeout-minutes: 10

steps:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
run: cargo check --all-features

clippy:
runs-on: buildjet-4vcpu-ubuntu-2204
runs-on: depot-ubuntu-22.04-4

steps:
- uses: actions/checkout@v3
Expand All @@ -95,7 +95,7 @@ jobs:
run: cargo clippy -- -D warnings

format:
runs-on: buildjet-4vcpu-ubuntu-2204
runs-on: depot-ubuntu-22.04-4

steps:
- uses: actions/checkout@v3
Expand Down
Loading