From 61ba9d1727b0d3ec268064f1a80171856de8d85d Mon Sep 17 00:00:00 2001 From: dustine32 Date: Thu, 25 Jan 2024 16:59:41 -0800 Subject: [PATCH] Try python 3.9 in GH action --- .github/workflows/validate_json.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate_json.yml b/.github/workflows/validate_json.yml index 5143999..a1c3ed5 100644 --- a/.github/workflows/validate_json.yml +++ b/.github/workflows/validate_json.yml @@ -11,14 +11,14 @@ jobs: strategy: matrix: - python-version: [3.5] + python-version: [3.9] steps: - name: Checkout repository uses: actions/checkout@v2 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }}