From cc466e47dadedab3852c6549199f2a42d0544738 Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Tue, 27 Oct 2020 14:53:52 -0400 Subject: [PATCH] bump python version for acceptance tests Signed-off-by: Alex Goodman --- .github/workflows/acceptance-test.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/acceptance-test.yaml b/.github/workflows/acceptance-test.yaml index b99e988cf..f53d6a237 100644 --- a/.github/workflows/acceptance-test.yaml +++ b/.github/workflows/acceptance-test.yaml @@ -14,7 +14,8 @@ env: jobs: Build-Snapshot-Artifacts: - runs-on: ubuntu-latest + # come Nov 30 2020 ubuntu-latest will be ubuntu-20.04, until then it needs to be explicitly referenced due to python 3.7 specific features being used + runs-on: ubuntu-20.04 steps: - uses: actions/setup-go@v2 @@ -79,7 +80,8 @@ jobs: # Note: changing this job name requires making the same update in the .github/workflows/release.yaml pipeline Acceptance-Linux: needs: [ Build-Snapshot-Artifacts ] - runs-on: ubuntu-latest + # come Nov 30 2020 ubuntu-latest will be ubuntu-20.04, until then it needs to be explicitly referenced due to python 3.7 specific features being used + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 @@ -129,7 +131,8 @@ jobs: # Note: changing this job name requires making the same update in the .github/workflows/release.yaml pipeline Inline-Compare: needs: [ Build-Snapshot-Artifacts ] - runs-on: ubuntu-latest + # come Nov 30 2020 ubuntu-latest will be ubuntu-20.04, until then it needs to be explicitly referenced due to python 3.7 specific features being used + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2