From 255ec3ab27ecbbb5f3c5d01aa7a1e4dd4b9e564c Mon Sep 17 00:00:00 2001 From: Tobias Oetiker Date: Wed, 4 Jan 2023 09:37:24 +0100 Subject: [PATCH] use ubuntu 20.04 for testing --- .github/workflows/build-test-linux.yml | 2 +- .github/workflows/code-coverage.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/release-source.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-test-linux.yml b/.github/workflows/build-test-linux.yml index ddc85da5..a3eb7858 100644 --- a/.github/workflows/build-test-linux.yml +++ b/.github/workflows/build-test-linux.yml @@ -7,7 +7,7 @@ on: jobs: build: name: Build - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout repository uses: actions/checkout@v2 diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index bb2fdea1..7dbaba7a 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -7,7 +7,7 @@ on: jobs: build: name: Build - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout repository uses: actions/checkout@v3 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 828d83f9..0cb646d4 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -21,7 +21,7 @@ on: jobs: analyze: name: Analyze - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 permissions: actions: read contents: read diff --git a/.github/workflows/release-source.yml b/.github/workflows/release-source.yml index 0aaea512..2a026a12 100644 --- a/.github/workflows/release-source.yml +++ b/.github/workflows/release-source.yml @@ -12,7 +12,7 @@ on: jobs: release: name: Release Source - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 permissions: contents: write steps: -- 2.47.2