From 0c255ab302f4cde52ac35fa4f11c78524a3ef8de Mon Sep 17 00:00:00 2001 From: Joel Wachsler Date: Mon, 11 Jul 2022 15:07:40 +0000 Subject: [PATCH] Go back to 22.04 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/extra.yml | 2 +- .github/workflows/publish.yml | 4 ++-- .github/workflows/release.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 730fe41..f31f203 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ env: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 services: # Needed for tests to pass @@ -48,7 +48,7 @@ jobs: args: --workspace --verbose fmt: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 @@ -67,7 +67,7 @@ jobs: args: --all -- --check clippy: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/extra.yml b/.github/workflows/extra.yml index 1c99e6f..faed958 100644 --- a/.github/workflows/extra.yml +++ b/.github/workflows/extra.yml @@ -12,7 +12,7 @@ jobs: # Need to have the same name as where this dependency is used, # otherwise the cache key won't be the same. release: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: # build and cache this here in order to reuse it's cache in feature branches diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1aae0b0..d4b287c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ env: jobs: tag: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 outputs: should_publish: ${{ steps.create-and-push-tag.outputs.should_publish }} @@ -39,7 +39,7 @@ jobs: echo "The result is: ${{ steps.create-and-push-tag.outputs.should_publish }}" publish: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: tag if: ${{ needs.tag.outputs.should_publish == 'true' }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 81be97b..5b39eb6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ env: jobs: release: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 if: "startsWith(github.ref, 'refs/heads/create_release/')"