From 8ce3a34ffa78f02f088fa478e2957479ca530d12 Mon Sep 17 00:00:00 2001 From: curquiza Date: Tue, 20 Dec 2022 11:10:09 +0100 Subject: [PATCH] Remove macos-latest and windows-latest usages --- .github/workflows/publish-binaries.yml | 8 ++++---- .github/workflows/rust.yml | 2 +- bors.toml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish-binaries.yml b/.github/workflows/publish-binaries.yml index 67359c4ab..784640eb0 100644 --- a/.github/workflows/publish-binaries.yml +++ b/.github/workflows/publish-binaries.yml @@ -68,12 +68,12 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest] + os: [macos-12, windows-2022] include: - - os: macos-latest + - os: macos-12 artifact_name: meilisearch asset_name: meilisearch-macos-amd64 - - os: windows-latest + - os: windows-2022 artifact_name: meilisearch.exe asset_name: meilisearch-windows-amd64.exe steps: @@ -102,7 +102,7 @@ jobs: fail-fast: false matrix: include: - - os: macos-latest + - os: macos-12 target: aarch64-apple-darwin asset_name: meilisearch-macos-apple-silicon steps: diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 98d1db961..f1260124e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -50,7 +50,7 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest] + os: [macos-12, windows-2022] steps: - uses: actions/checkout@v3 - name: Cache dependencies diff --git a/bors.toml b/bors.toml index b357e8d61..1e7e418e5 100644 --- a/bors.toml +++ b/bors.toml @@ -1,7 +1,7 @@ status = [ 'Tests on ubuntu-18.04', - 'Tests on macos-latest', - 'Tests on windows-latest', + 'Tests on macos-12', + 'Tests on windows-2022', 'Run Clippy', 'Run Rustfmt', 'Run tests in debug',