From db206785b467ceef254a3c497388142c459faa07 Mon Sep 17 00:00:00 2001 From: Derek Nola Date: Mon, 10 Nov 2025 09:29:24 -0800 Subject: [PATCH] Pin python to 3.13 for ansible 2.19 support (#462) Signed-off-by: Derek Nola --- .github/workflows/build.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 955a729..dfb73ba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,10 +15,10 @@ jobs: - name: Check out the codebase. uses: actions/checkout@v4 - - name: Set up Python 3. + - name: Set up Python 3.13. uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: '3.13.x' - name: Install test dependencies. run: pip3 install ansible diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index de7e130..8b8a2b2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,10 +16,10 @@ jobs: - name: Check out the codebase. uses: actions/checkout@v4 - - name: Set up Python 3.7. + - name: Set up Python 3.13. uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: '3.13.x' - name: Install test dependencies. run: pip3 install yamllint ansible-lint ansible