Skip to content

Commit b4f6b02

Browse files
committed
Fix deprecated Node.js 12 actions with update to Node.js 16 in python-linters.yml
1 parent 4902e2a commit b4f6b02

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/python-linters.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
runs-on: ubuntu-20.04
1818
needs: [python-files]
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121

2222
- name: Set up Python 3.6
23-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: 3.6.15
2626

27-
- uses: actions/cache@v2
27+
- uses: actions/cache@v3
2828
with:
2929
path: ~/pip-cache
3030
key: pip-3.6-${{ github.sha }}
@@ -46,14 +46,14 @@ jobs:
4646
runs-on: ubuntu-20.04
4747
needs: [python-files]
4848
steps:
49-
- uses: actions/checkout@v2
49+
- uses: actions/checkout@v3
5050

5151
- name: Set up Python 3.6
52-
uses: actions/setup-python@v2
52+
uses: actions/setup-python@v4
5353
with:
5454
python-version: 3.6.15
5555

56-
- uses: actions/cache@v2
56+
- uses: actions/cache@v3
5757
with:
5858
path: ~/pip-cache
5959
key: pip-3.6-${{ github.sha }}

0 commit comments

Comments
 (0)