Skip to content

Commit 11ab396

Browse files
committed
fix workflows
1 parent b67946b commit 11ab396

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/documentation.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/setup-python@v4
2222
with:
2323
python-version: 3.x
24-
- uses: actions/cache@v2
24+
- uses: actions/cache@v4
2525
with:
2626
key: ${{ github.ref }}
2727
path: .cache
@@ -79,14 +79,14 @@ jobs:
7979
steps:
8080
- uses: actions/checkout@v3
8181
- name: Cache pip
82-
uses: actions/cache@v2
82+
uses: actions/cache@v4
8383
with:
8484
path: ~/.cache/pip
8585
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
8686
restore-keys: |
8787
${{ runner.os }}-pip-
8888
- name: Cache PlatformIO
89-
uses: actions/cache@v2
89+
uses: actions/cache@v4
9090
with:
9191
path: ~/.platformio
9292
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
@@ -115,7 +115,7 @@ jobs:
115115
runs-on: ubuntu-latest
116116
steps:
117117
- uses: actions/checkout@v3
118-
- uses: actions/cache@v2
118+
- uses: actions/cache@v4
119119
with:
120120
key: ${{ github.ref }}
121121
path: .cache
@@ -149,7 +149,7 @@ jobs:
149149
name: Static firmware analysis
150150
steps:
151151
- uses: actions/checkout@v3
152-
- uses: actions/cache@v2
152+
- uses: actions/cache@v4
153153
with:
154154
key: ${{ github.ref }}
155155
path: .cache
@@ -202,7 +202,7 @@ jobs:
202202
- uses: actions/setup-python@v4
203203
with:
204204
python-version: 3.x
205-
- uses: actions/cache@v2
205+
- uses: actions/cache@v4
206206
with:
207207
key: ${{ github.ref }}
208208
path: .cache

.github/workflows/pio.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v2
2424
- name: Cache pip
25-
uses: actions/cache@v2
25+
uses: actions/cache@v4
2626
with:
2727
path: ~/.cache/pip
2828
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
2929
restore-keys: |
3030
${{ runner.os }}-pip-
3131
- name: Cache PlatformIO
32-
uses: actions/cache@v2
32+
uses: actions/cache@v4
3333
with:
3434
path: ~/.platformio
3535
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}

0 commit comments

Comments
 (0)