From baededcd6374eb64e3c0632ec84e4608d6f0680a Mon Sep 17 00:00:00 2001 From: Diogo Mendes Matsubara Date: Mon, 23 Feb 2026 07:35:20 +0100 Subject: [PATCH] chore: use gh hosted runners --- .github/workflows/ci.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac407a5..7df37e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,11 +24,11 @@ on: jobs: check: name: Run checks on ${{ matrix.os }} - runs-on: [self-hosted, "${{ matrix.os }}"] + runs-on: "${{ matrix.os }}" strategy: fail-fast: false matrix: - os: [ubuntu-22.04, windows-11, macOS] + os: [ubuntu-latest, windows-latest, macos-latest] features: [ "", @@ -64,11 +64,11 @@ jobs: check-nightly: name: Run checks on ${{ matrix.os }} with Nightly - runs-on: [self-hosted, "${{ matrix.os }}"] + runs-on: "${{ matrix.os }}" strategy: fail-fast: false matrix: - os: [ubuntu-22.04] + os: [ubuntu-latest] steps: - uses: actions/checkout@v2 @@ -91,11 +91,11 @@ jobs: check-1-72: name: Run 1.72 checks on ${{ matrix.os }} - runs-on: [self-hosted, "${{ matrix.os }}"] + runs-on: "${{ matrix.os }}" strategy: fail-fast: false matrix: - os: [ubuntu-22.04] + os: [ubuntu-latest] steps: - uses: actions/checkout@v2 @@ -117,11 +117,11 @@ jobs: check-wasm: name: Run wasm checks on ${{ matrix.os }} - runs-on: [self-hosted, "${{ matrix.os }}"] + runs-on: "${{ matrix.os }}" strategy: fail-fast: false matrix: - os: [ubuntu-22.04] + os: [ubuntu-latest] steps: - uses: actions/checkout@v2 - name: Install Rust toolchain @@ -141,11 +141,11 @@ jobs: check-32bits: name: Run 32bits checks on ${{ matrix.os }} - runs-on: [self-hosted, "${{ matrix.os }}"] + runs-on: "${{ matrix.os }}" strategy: fail-fast: false matrix: - os: [ubuntu-22.04] + os: [ubuntu-latest] steps: - uses: actions/checkout@v2 - name: Install Rust toolchain @@ -165,11 +165,11 @@ jobs: test: name: Run tests on ${{ matrix.os }} - runs-on: [self-hosted, "${{ matrix.os }}"] + runs-on: "${{ matrix.os }}" strategy: fail-fast: false matrix: - os: [ubuntu-22.04, macOS] + os: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v2