Skip to content

Commit

Permalink
Fix deprecated Node.js 12 actions with update to Node.js 16 in python…
Browse files Browse the repository at this point in the history
…-linters.yml
  • Loading branch information
jeff-takaki committed Jun 20, 2023
1 parent 4902e2a commit b4f6b02
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python-linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit b4f6b02

Please sign in to comment.