From 3e8e3da99bb6b09060b9afa443c28194f8cbb4bb Mon Sep 17 00:00:00 2001 From: Mart Ratas Date: Thu, 21 Sep 2023 17:47:17 +0300 Subject: [PATCH] Fix issue with GHA targets (#348) * CU-8692kn0yv Fix issue with fake dict in identifier based config More specifically the get method which was not able to return default values for non-existant keys (#341) * Bump run target to Ubuntu 20.04 since 18.04 targets do not exist anymore * Bump main worfklow target to 20.04 as well --- .github/workflows/main.yml | 2 +- .github/workflows/production.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b0985d685..d4ee70371 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,7 +42,7 @@ jobs: github.ref == 'refs/heads/master' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags') != true - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 concurrency: publish-to-test-pypi needs: [build] diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index ad229ce9c..5088c1000 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -8,7 +8,7 @@ on: jobs: build-n-publish-to-pypi: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 concurrency: build-n-publish-to-pypi if: github.repository == 'CogStack/MedCAT'