File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,20 +18,20 @@ jobs:
18
18
steps :
19
19
20
20
- name : Step 1 - Checkout Repo
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v4
22
22
- name : Step 2 - Cache pip
23
- uses : actions/cache@v2
23
+ uses : actions/cache@v3
24
24
with :
25
25
path : ~/.cache/pip
26
26
key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
27
27
restore-keys : ${{ runner.os }}-pip-
28
28
- name : Step 3 - Cache PlatformIO
29
- uses : actions/cache@v2
29
+ uses : actions/cache@v3
30
30
with :
31
31
path : ~/.platformio
32
32
key : ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
33
33
- name : Step 4 - Set up Python
34
- uses : actions/setup-python@v2
34
+ uses : actions/setup-python@v4
35
35
- name : Step 5 - Install PlatformIO
36
36
run : |
37
37
python -m pip install --upgrade pip
You can’t perform that action at this time.
0 commit comments