Skip to content

Commit 56e507c

Browse files
committed
[Build] Update build scripts to use non-deprecated actions tooling
1 parent 3390e72 commit 56e507c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/Build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,19 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v2
3838
- name: Cache pip
39-
uses: actions/cache@v2
39+
uses: actions/cache@v4
4040
with:
4141
path: ~/.cache/pip
4242
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
4343
restore-keys: |
4444
${{ runner.os }}-pip-
4545
- name: Cache PlatformIO
46-
uses: actions/cache@v2
46+
uses: actions/cache@v4
4747
with:
4848
path: ~/.platformio
4949
key: ${{ runner.os }}-${{ hashFiles('**/platformio.ini') }}
5050
- name: Cache PlatformIO build
51-
uses: actions/cache@v2
51+
uses: actions/cache@v4
5252
with:
5353
path: .pio
5454
key: pio-${{ runner.os }}-${{ matrix.project }}

0 commit comments

Comments
 (0)