From 66f9ab0adaf829042e5274a8523eddb8742f8000 Mon Sep 17 00:00:00 2001 From: Yoshinari Takaoka Date: Sat, 3 Dec 2022 12:13:36 +0900 Subject: [PATCH] Ubuntu-latest workflows will use Ubuntu-22.04, temporary workaround (#2036) ubuntu-latest is currently transitioning to ubuntu-22.04. During this time, you may experience some jobs running on either an ubuntu-20.04 or ubuntu-22.04 runner. You can specify `runs-on: ubuntu-20.04` in your workflow if you need the previous version. https://github.com/actions/runner-images https://github.com/actions/runner-images/issues/6399 --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index ada79b5abbb3..9843e63ff9b8 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -12,7 +12,7 @@ jobs: build: name: "Build" - runs-on: "ubuntu-latest" + runs-on: "ubuntu-20.04" strategy: matrix: