From 9ac10621438bbe36e8fe7de97c035d3b04ae6b7b Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Mon, 2 May 2022 10:49:54 +0300 Subject: [PATCH] github: Run on Ubuntu 22.04 Currently, tests are run on 18.04 and 20.04, but 22.04 is out already, so this commit drops 18.04 and adds the latest release. --- .github/workflows/primary.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/primary.yml b/.github/workflows/primary.yml index 04cff08..56e434d 100644 --- a/.github/workflows/primary.yml +++ b/.github/workflows/primary.yml @@ -13,7 +13,7 @@ env: jobs: clippy: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 10 steps: - uses: actions/checkout@v2 @@ -38,7 +38,7 @@ jobs: timeout-minutes: 10 strategy: matrix: - os: [ubuntu-18.04, ubuntu-20.04] + os: [ubuntu-20.04, ubuntu-22.04] steps: - uses: actions/checkout@v2 - uses: Swatinem/rust-cache@v1