Skip to content

Commit 3396ab2

Browse files
ci: bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent daa22ea commit 3396ab2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build_examples.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
uses: arduino/[email protected]
4949

5050
- name: Restore Arduino platforms
51-
uses: actions/cache/restore@v4
51+
uses: actions/cache/restore@v5
5252
id: restore_platforms
5353
with:
5454
path: |
@@ -64,7 +64,7 @@ jobs:
6464
sh continuous_integration/install-platforms-arduino-cli.sh
6565
6666
- name: Restore Arduino libraries
67-
uses: actions/cache/restore@v4
67+
uses: actions/cache/restore@v5
6868
id: restore_libraries
6969
if: ${{ steps.check_lib_install.outputs.valid_lib_dep_script == 'true'}}
7070
with:
@@ -327,7 +327,7 @@ jobs:
327327
arduino-cli --config-file continuous_integration/arduino_cli.yaml lib uninstall ${GITHUB_REPOSITORY#*/}
328328
329329
- name: Cache Arduino platforms
330-
uses: actions/cache/save@v4
330+
uses: actions/cache/save@v5
331331
id: cache_platforms
332332
if: ${{ always() }}
333333
with:
@@ -336,7 +336,7 @@ jobs:
336336
key: ${{ steps.restore_platforms.outputs.cache-primary-key }}
337337

338338
- name: Cache Arduino libraries
339-
uses: actions/cache/save@v4
339+
uses: actions/cache/save@v5
340340
id: cache_libraries
341341
if: ${{ always() && steps.check_lib_install.outputs.valid_lib_dep_script == 'true'}}
342342
with:
@@ -363,7 +363,7 @@ jobs:
363363
uses: EnviroDIY/[email protected]
364364

365365
- name: Restore PlatformIO platforms
366-
uses: actions/cache/restore@v4
366+
uses: actions/cache/restore@v5
367367
id: restore_platforms
368368
with:
369369
path: |
@@ -381,7 +381,7 @@ jobs:
381381
sh continuous_integration/install-platforms-platformio.sh
382382
383383
- name: Restore PlatformIO libraries
384-
uses: actions/cache/restore@v4
384+
uses: actions/cache/restore@v5
385385
id: restore_libraries
386386
if: ${{ steps.check_lib_install.outputs.valid_lib_dep_script == 'true'}}
387387
with:
@@ -531,7 +531,7 @@ jobs:
531531
pio pkg uninstall --skip-dependencies -g --library LoRa_AT
532532
533533
- name: Cache PlatformIO platforms
534-
uses: actions/cache/save@v4
534+
uses: actions/cache/save@v5
535535
id: cache_platforms
536536
if: ${{ always() }}
537537
with:
@@ -542,7 +542,7 @@ jobs:
542542
key: ${{ steps.restore_platforms.outputs.cache-primary-key }}
543543

544544
- name: Cache PlatformIO libraries
545-
uses: actions/cache/save@v4
545+
uses: actions/cache/save@v5
546546
id: cache_libraries
547547
if: ${{ always() && steps.check_lib_install.outputs.valid_lib_dep_script == 'true'}}
548548
with:

0 commit comments

Comments
 (0)