From 7fa5e9e2c7cd80e44a4cad52f02aa36b4dcd2bc9 Mon Sep 17 00:00:00 2001 From: Danilo Pianini Date: Fri, 8 Dec 2023 15:20:21 +0100 Subject: [PATCH] ci: use explicit runner versions --- .github/workflows/build-and-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index f98c9d4..f981c19 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -22,9 +22,9 @@ jobs: build: strategy: matrix: - os: [windows, macos, ubuntu] + os: [ windows-2022, macos-12, ubuntu-22.04 ] fail-fast: false - runs-on: ${{ matrix.os }}-latest + runs-on: ${{ matrix.os }} steps: # Checkout the repository - name: Checkout