From b665e58aa176284c623dd82018d73bd1a2eaf94c Mon Sep 17 00:00:00 2001 From: Raphael Hetzel Date: Thu, 14 Sep 2023 07:40:48 +0000 Subject: [PATCH] Use hosted runners. --- .github/workflows/commit_checks.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/commit_checks.yml b/.github/workflows/commit_checks.yml index e4e06851..7cece0be 100644 --- a/.github/workflows/commit_checks.yml +++ b/.github/workflows/commit_checks.yml @@ -4,7 +4,7 @@ on: jobs: check: runs-on: - - self-hosted + - ubuntu-latest container: image: ghcr.io/edgeless-project/ci-image:latest credentials: @@ -20,13 +20,14 @@ jobs: run: cargo test build: runs-on: - - self-hosted + - ubuntu-latest container: image: ghcr.io/edgeless-project/ci-image:latest credentials: username: ${{ github.actor }} password: ${{ secrets.github_token }} steps: + - uses: actions/checkout@v3 - name: Build x64 Release run: cargo build --release - name: Upload Binaries