From 169a3e8ab696da68897747d17e7b571448ab0a8a Mon Sep 17 00:00:00 2001 From: Alex Muramoto Date: Wed, 11 Jan 2023 10:24:33 -0800 Subject: [PATCH] fix: sets release action to use ubuntu-20.04 Sets release action to use Ubuntu-20.04 because it's needed for pkg_tar (https://github.com/bazelbuild/bazel/issues/11554) since python2 was removed from Ubuntu after 20.04. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ee768589..1ee74afa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ on: jobs: release: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 env: GOOGLE_MAPS_JS_SAMPLES_KEY: "${{ secrets.GOOGLE_MAPS_JS_SAMPLES_KEY }}" steps: