From 711665218e602af9b217fac9710fe8cdb19b62a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Gu=CC=88ner?= Date: Fri, 29 Sep 2023 19:51:48 +0300 Subject: [PATCH] chore: use ubuntu 20.04 on CI --- .github/workflows/build-templates.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-templates.yml b/.github/workflows/build-templates.yml index fdea4b1a6..a92e5b016 100644 --- a/.github/workflows/build-templates.yml +++ b/.github/workflows/build-templates.yml @@ -22,8 +22,8 @@ jobs: fail-fast: false matrix: os: - - ubuntu - - macos + - ubuntu-20.04 + - macos-12 type: - module-legacy - module-mixed @@ -37,9 +37,9 @@ jobs: - kotlin-objc - kotlin-swift exclude: - - os: macos + - os: macos-12 language: kotlin-objc - - os: macos + - os: macos-12 language: kotlin-swift - type: module-new language: java-swift @@ -58,25 +58,25 @@ jobs: - type: view-mixed language: kotlin-swift include: - - os: ubuntu + - os: ubuntu-20.04 type: library language: js - - os: ubuntu + - os: ubuntu-20.04 type: module-legacy language: cpp - - os: ubuntu + - os: ubuntu-20.04 type: module-mixed language: cpp - - os: ubuntu + - os: ubuntu-20.04 type: module-new language: cpp - - os: macos + - os: macos-12 type: module-legacy language: cpp - - os: macos + - os: macos-12 type: module-mixed language: cpp - - os: macos + - os: macos-12 type: module-new language: cpp @@ -84,7 +84,7 @@ jobs: group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.type }}-${{ matrix.language }} cancel-in-progress: true - runs-on: ${{ matrix.os }}-latest + runs-on: ${{ matrix.os }} steps: - name: Checkout