Skip to content

Commit c4c706e

Browse files
committed
fix depreciation warnings on github actions using node12
1 parent a637800 commit c4c706e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ jobs:
7171

7272
steps:
7373
- name: Check out the codebase.
74-
uses: actions/checkout@v2
74+
uses: actions/checkout@v3
7575

7676
- name: Set up Python 3.
77-
uses: actions/setup-python@v2
77+
uses: actions/setup-python@v4
7878
with:
79-
python-version: '3.x'
79+
python-version: '3.9'
8080

8181
- name: Install test dependencies.
8282
run: |
@@ -104,12 +104,12 @@ jobs:
104104
runs-on: ubuntu-20.04
105105
steps:
106106
- name: Check out the codebase.
107-
uses: actions/checkout@v2
107+
uses: actions/checkout@v3
108108

109109
- name: Set up Python 3.
110-
uses: actions/setup-python@v2
110+
uses: actions/setup-python@v4
111111
with:
112-
python-version: '3.x'
112+
python-version: '3.9'
113113

114114
- name: Install test dependencies.
115115
run: |

0 commit comments

Comments
 (0)