From d019eaefaa8689dbefb23513d6d3edb678def5ef Mon Sep 17 00:00:00 2001 From: Sujith Date: Tue, 13 Jun 2023 11:12:38 +0530 Subject: [PATCH] fix: ubuntu version focal to 20.04 Signed-off-by: Sujith --- .github/workflows/docker-release.yml | 2 +- .github/workflows/prerelease.yml | 4 ++-- .github/workflows/release.yml | 2 +- .github/workflows/tagging-and-release.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index 1f4b1c4363..eb4cd466a5 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -12,7 +12,7 @@ jobs: permissions: contents: write pull-requests: write - runs-on: ubuntu-focal + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 9fb77058f8..128037c237 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -14,7 +14,7 @@ jobs: permissions: contents: write # to create release (changesets/action) pull-requests: write # to create pull request (changesets/action) - runs-on: ubuntu-focal + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 with: @@ -84,7 +84,7 @@ jobs: permissions: contents: write # to create release (changesets/action) pull-requests: write # to create pull request (changesets/action) - runs-on: ubuntu-focal + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 33812bc23d..8b50ded98c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: contents: write # to create release (changesets/action) pull-requests: write # to create pull request (changesets/action) - runs-on: ubuntu-focal + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/tagging-and-release.yml b/.github/workflows/tagging-and-release.yml index e7d3647358..cd9b30b887 100644 --- a/.github/workflows/tagging-and-release.yml +++ b/.github/workflows/tagging-and-release.yml @@ -11,7 +11,7 @@ jobs: if: github.event.pull_request.merged == true && github.base_ref == 'trunk' && github.head_ref == 'changeset-release/trunk' permissions: contents: write # to create release (changesets/action) - runs-on: ubuntu-focal + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2