From 016c3ed57f124295f4ebab7d66fa51c07a2cf9ac Mon Sep 17 00:00:00 2001 From: Emily Ratliff Date: Tue, 22 Nov 2022 18:26:12 -0600 Subject: [PATCH] update workflow due to Node 12 deprecation --- .github/workflows/python-ci-tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-ci-tests.yml b/.github/workflows/python-ci-tests.yml index 692dfb5..683000a 100644 --- a/.github/workflows/python-ci-tests.yml +++ b/.github/workflows/python-ci-tests.yml @@ -10,13 +10,13 @@ jobs: name: Python 3.x Build steps: - - uses: actions/checkout@v2 - - name: Use Node.js 12.x - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - name: Use Node.js 16 + uses: actions/setup-node@v3 with: - node-version: '12.x' + node-version: 16 - name: Set up Python 3.x - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: '3.x' - name: Install and update essential dependencies