From 9085c93d7f617b7563218fa3b14abaa4aa92fb44 Mon Sep 17 00:00:00 2001 From: jolerasioo <90843031+jolerasioo@users.noreply.github.com> Date: Wed, 7 Feb 2024 13:31:32 +0000 Subject: [PATCH] Update pythonfunction.yml.template runner The runner ubuntu-18 is too old and I wasn't able to run it while going through the lab as GH is never able to find a runner that meets the requirements. I had to updated to latest and it worked fine. Sharing it here so that no one else has the same issue. --- .github/workflows/pythonfunction.yml.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonfunction.yml.template b/.github/workflows/pythonfunction.yml.template index 001bdf4e..e88155c9 100644 --- a/.github/workflows/pythonfunction.yml.template +++ b/.github/workflows/pythonfunction.yml.template @@ -17,7 +17,7 @@ env: jobs: build-and-deploy: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Checkout GitHub Action