From 3fec8ece5a2e0e535712316f0676cd6f290ee07a Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Sat, 30 Dec 2023 17:55:31 +0100 Subject: [PATCH] Change: [CI] always use "latest" image for our runners --- .github/workflows/ci-build.yml | 2 +- .github/workflows/release-linux.yml | 2 +- .github/workflows/release-macos.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 2da7d1870d..90b37433be 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -99,7 +99,7 @@ jobs: name: Linux (${{ matrix.name }}) - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: CC: ${{ matrix.compiler }} CXX: ${{ matrix.cxxcompiler }} diff --git a/.github/workflows/release-linux.yml b/.github/workflows/release-linux.yml index 5d1fc85d8a..6fe8b281fe 100644 --- a/.github/workflows/release-linux.yml +++ b/.github/workflows/release-linux.yml @@ -12,7 +12,7 @@ jobs: linux: name: Linux (Generic) - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest container: # manylinux2014 is based on CentOS 7, but already has a lot of things # installed and preconfigured. It makes it easier to build OpenTTD. diff --git a/.github/workflows/release-macos.yml b/.github/workflows/release-macos.yml index 26e3395642..04c2baa167 100644 --- a/.github/workflows/release-macos.yml +++ b/.github/workflows/release-macos.yml @@ -12,7 +12,7 @@ jobs: macos: name: MacOS - runs-on: macos-12 + runs-on: macos-latest env: MACOSX_DEPLOYMENT_TARGET: 10.13