From 842279b811357ce2c21db66e730a9d437b80e26b Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Tue, 16 Aug 2022 11:17:42 +0530 Subject: [PATCH] ci: use ubuntu-latest for stale job Currently, we use the Ubuntu 18.04 actions runner for stale job. This runner will be deprecated and removed in the beginning of Dec. So should change the runner to use latest ubuntu. Signed-off-by: Madhu Rajanna --- .github/workflows/stale.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index 07c8e7ae2..ee26d18bd 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -15,7 +15,7 @@ jobs: permissions: issues: write # for actions/stale to close stale issues pull-requests: write # for actions/stale to close stale PRs - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest if: github.repository == 'ceph/ceph-csi' steps: - uses: actions/stale@v5