From c6b3e2d1a728ddf6138ca6868311908c543293dc Mon Sep 17 00:00:00 2001 From: Alexis Pentori Date: Mon, 2 Dec 2024 10:16:25 +0100 Subject: [PATCH] action: using self hosted runner Signed-off-by: Alexis Pentori --- .github/workflows/linters.yml | 4 ++-- .github/workflows/test_common.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 07902a4d..036ec424 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -8,7 +8,7 @@ on: jobs: linters: timeout-minutes: 10 - runs-on: ubuntu-latest + runs-on: ['self-hosted', 'ubuntu-22.04'] steps: - uses: actions/checkout@v4 @@ -30,4 +30,4 @@ jobs: run: pip install pre-commit - name: Run pre-commit hooks - run: pre-commit run --all-files \ No newline at end of file + run: pre-commit run --all-files diff --git a/.github/workflows/test_common.yml b/.github/workflows/test_common.yml index fc5a36c2..099cbe11 100644 --- a/.github/workflows/test_common.yml +++ b/.github/workflows/test_common.yml @@ -35,7 +35,7 @@ jobs: tests: name: tests - runs-on: ubuntu-latest + runs-on: ['self-hosted', 'ubuntu-22.04'] timeout-minutes: 120 steps: