From b12d01b48d5cd4b350a9061b1148a7bf9ceecd33 Mon Sep 17 00:00:00 2001 From: D025 Date: Thu, 25 Jul 2024 23:44:44 +0300 Subject: [PATCH] ci: runners usage optimisation (#2500) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What ❔ Change runer type for some jobs ## Why ❔ Runner usage optimisation ## Checklist - [x] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] Code has been formatted via `zk fmt` and `zk lint`. --- .github/workflows/ci.yml | 2 +- .github/workflows/release-please-cargo-lock.yml | 2 +- .github/workflows/release-test-stage.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8ef751b317..d9df796a2c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ concurrency: jobs: changed_files: - runs-on: [matterlabs-default-infra-runners] + runs-on: ubuntu-latest name: Get changed files outputs: core: ${{ steps.changed-files.outputs.core_any_changed }} diff --git a/.github/workflows/release-please-cargo-lock.yml b/.github/workflows/release-please-cargo-lock.yml index c7972580cac..7ac8c0550d0 100644 --- a/.github/workflows/release-please-cargo-lock.yml +++ b/.github/workflows/release-please-cargo-lock.yml @@ -6,7 +6,7 @@ on: name: release-please-update-cargo-lock jobs: update_cargo_lock: - runs-on: [matterlabs-ci-runner] + runs-on: [matterlabs-default-infra-runners] steps: - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 diff --git a/.github/workflows/release-test-stage.yml b/.github/workflows/release-test-stage.yml index 7e924b549e2..5bbdd7ae7a0 100644 --- a/.github/workflows/release-test-stage.yml +++ b/.github/workflows/release-test-stage.yml @@ -10,7 +10,7 @@ concurrency: jobs: changed_files: - runs-on: [matterlabs-default-infra-runners] + runs-on: ubuntu-latest name: Test changed-files outputs: core: ${{ steps.changed-files-yaml.outputs.core_any_changed }}