From adcd8e0325bc891460b3e51aa5403f8675189f13 Mon Sep 17 00:00:00 2001 From: Edwin Joassart Date: Mon, 12 Dec 2022 12:09:01 +0100 Subject: [PATCH] Patch: run linux build on ubuntu-20.04 as [`18.04` has been removed](https://github.blog/changelog/2022-08-09-github-actions-the-ubuntu-18-04-actions-runner-image-is-being-deprecated-and-will-be-removed-by-12-1-22/) We cannot use `latest` as the glibc version will cause issue with older ubuntu version. --- .github/workflows/flowzone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flowzone.yml b/.github/workflows/flowzone.yml index 18810303..63e0d266 100644 --- a/.github/workflows/flowzone.yml +++ b/.github/workflows/flowzone.yml @@ -20,7 +20,7 @@ jobs: (github.event.pull_request.head.repo.full_name != github.repository && github.event_name == 'pull_request_target') secrets: inherit with: - tests_run_on: '["ubuntu-18.04","macos-latest","windows-2019"]' + tests_run_on: '["ubuntu-20.04","macos-latest","windows-2019"]' restrict_custom_actions: false github_prerelease: true repo_config: true