From 5f26936d9f20dd09248386d57a9b181e091b532e Mon Sep 17 00:00:00 2001 From: Jernej Kos Date: Thu, 12 Jan 2023 08:52:46 +0100 Subject: [PATCH] ci: Explicitly use Ubuntu 22.04 for release builds This avoids the situation when ubuntu-latest gets changed to something else, possibly imposing a different set of dependencies. --- .changelog/5131.internal.md | 4 ++++ .github/workflows/release-dev.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .changelog/5131.internal.md diff --git a/.changelog/5131.internal.md b/.changelog/5131.internal.md new file mode 100644 index 00000000000..69d95e1137b --- /dev/null +++ b/.changelog/5131.internal.md @@ -0,0 +1,4 @@ +ci: Explicitly use Ubuntu 22.04 for release builds + +This avoids the situation when ubuntu-latest gets changed to something +else, possibly imposing a different set of dependencies. diff --git a/.github/workflows/release-dev.yml b/.github/workflows/release-dev.yml index d755208bee6..023e7c4ea19 100644 --- a/.github/workflows/release-dev.yml +++ b/.github/workflows/release-dev.yml @@ -21,7 +21,7 @@ env: jobs: prepare-dev-release: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout code uses: actions/checkout@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4bb661fdd8c..fb9d281bf9c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ env: jobs: prepare-release: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout code uses: actions/checkout@v3