From 77b2cd604d69c0bbbf3f6a89e9cbd60b18b29010 Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Wed, 18 Jan 2023 00:02:38 +0530 Subject: [PATCH] Fix ci test cleanup script (#2140) ## Description Purge script needs go 1.19 and ubuntu latest contains 1.18 as of now. Here is a sample run failing because of this: https://github.com/alcionai/corso/actions/runs/3909006130/jobs/6679661266 ## Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No ## Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Test - [x] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup ## Issue(s) * # ## Test Plan - [x] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- .github/workflows/ci_test_cleanup.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_test_cleanup.yml b/.github/workflows/ci_test_cleanup.yml index 1cefbb282..41dc064c9 100644 --- a/.github/workflows/ci_test_cleanup.yml +++ b/.github/workflows/ci_test_cleanup.yml @@ -16,8 +16,11 @@ jobs: steps: - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 + with: + go-version: '1.19' - # sets the maximimum time to now-30m. + # sets the maximum time to now-30m. # CI test have a 10 minute timeout. # At 20 minutes ago, we should be safe from conflicts. # The additional 10 minutes is just to be good citizens.