From 9077968119eaa4ec70136382dabe4aa65bdc108f Mon Sep 17 00:00:00 2001 From: Akhil Mohan Date: Thu, 20 Jun 2024 07:07:18 +0530 Subject: [PATCH] update release runners to ubuntu 24.04 update all runners except the binary building job to ubuntu-24.04 Signed-off-by: Akhil Mohan --- .github/workflows/api-release.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/api-release.yml b/.github/workflows/api-release.yml index 7b2814de9..fbc3e5efd 100644 --- a/.github/workflows/api-release.yml +++ b/.github/workflows/api-release.yml @@ -15,7 +15,7 @@ jobs: check: name: Check Signed Tag if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/api/v') - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 outputs: stringver: ${{ steps.contentrel.outputs.stringver }} @@ -60,7 +60,7 @@ jobs: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/api/v') permissions: contents: write - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 timeout-minutes: 10 needs: [check] steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c3a1b1081..d9d203a00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: check: name: Check Signed Tag if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 timeout-minutes: 5 outputs: stringver: ${{ steps.contentrel.outputs.stringver }} @@ -137,7 +137,7 @@ jobs: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') permissions: contents: write - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 timeout-minutes: 10 needs: [build, check] steps: