From 1f0075f5f9fbaa0878c95ba40cbaaf3efc940ddf Mon Sep 17 00:00:00 2001 From: Jesse Nusbaumer Date: Tue, 13 Dec 2022 11:27:57 -0700 Subject: [PATCH] Update issue closing workflow in order to avoid Github Action failures. --- .github/workflows/branch_push_workflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/branch_push_workflow.yml b/.github/workflows/branch_push_workflow.yml index 96bc23e44e..23c7a19460 100644 --- a/.github/workflows/branch_push_workflow.yml +++ b/.github/workflows/branch_push_workflow.yml @@ -16,13 +16,13 @@ jobs: runs-on: ubuntu-latest steps: # acquire github action routines - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # acquire specific version of python - - name: Set up Python 3.6 + - name: Set up Python 3.10 if: github.repository == 'ESCOMP/CAM' #Only run on main repo - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: - python-version: '3.6' # Semantic version range syntax or exact version of a Python version + python-version: '3.10' # Semantic version range syntax or exact version of a Python version # install required python packages - name: Install dependencies if: github.repository == 'ESCOMP/CAM' #Only run on main repo