From 258c7d928af0a13ee8451cdd272d20efc46c90b6 Mon Sep 17 00:00:00 2001 From: Anton Tayanovskyy Date: Mon, 16 Dec 2024 16:50:44 -0500 Subject: [PATCH] Update CI to Python 3.9 (#1443) Since the https://github.com/pulumi/pulumi/pull/17883 change Pulumi no longer supports 3.8 and tests need to be performed on 3.9 or later versions of Python. --- .github/actions/install/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index 53a802be2..ca837b95e 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -24,9 +24,9 @@ runs: registry-url: https://registry.npmjs.org - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: "3.9" - name: Setup DotNet if: inputs.skip_dotnet_and_java != 'true'