From b7805014a73ec5e88fabe2472e5b59626fe2fbbd Mon Sep 17 00:00:00 2001 From: Matthew Archer Date: Fri, 18 Oct 2024 09:16:15 +0000 Subject: [PATCH] Update action for Python2 support as Github no longer provides support for python2.7 from their action/setup-python action --- .github/workflows/python-app.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yaml b/.github/workflows/python-app.yaml index dfbb81f3..84815f81 100644 --- a/.github/workflows/python-app.yaml +++ b/.github/workflows/python-app.yaml @@ -13,9 +13,9 @@ jobs: build: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python 2.7.18 - uses: actions/setup-python@v3 + - uses: LizardByte/setup-python-action@master with: python-version: "2.7.18" - name: Install OneFLUX