From b4f6b02cb45ec99f8db54a68ba5d54517b82cc3a Mon Sep 17 00:00:00 2001 From: Jeff Takaki Date: Tue, 20 Jun 2023 13:24:31 -0500 Subject: [PATCH] Fix deprecated Node.js 12 actions with update to Node.js 16 in python-linters.yml --- .github/workflows/python-linters.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-linters.yml b/.github/workflows/python-linters.yml index 87edd1a..9c2c91f 100644 --- a/.github/workflows/python-linters.yml +++ b/.github/workflows/python-linters.yml @@ -17,14 +17,14 @@ jobs: runs-on: ubuntu-20.04 needs: [python-files] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python 3.6 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.6.15 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ~/pip-cache key: pip-3.6-${{ github.sha }} @@ -46,14 +46,14 @@ jobs: runs-on: ubuntu-20.04 needs: [python-files] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python 3.6 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.6.15 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ~/pip-cache key: pip-3.6-${{ github.sha }}