Skip to content

Commit fa42eba

Browse files
ci: bump actions/cache from 3.3.2 to 4.0.2
Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 4.0.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3.3.2...v4.0.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6aedde6 commit fa42eba

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build_documentation.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
path: code_docs/Arduino-SDI-12
2828

2929
- name: Restore or Cache pip
30-
uses: actions/cache@v3.3.2
30+
uses: actions/cache@v4.0.2
3131
id: cache_pip
3232
with:
3333
path: ~/.cache/pip
@@ -37,7 +37,7 @@ jobs:
3737
restore-keys: ${{ runner.os }}-pip-
3838

3939
- name: Restore or Cache PlatformIO and Libraries
40-
uses: actions/cache@v3.3.2
40+
uses: actions/cache@v4.0.2
4141
id: cache_pio
4242
with:
4343
path: ~/.platformio
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Restore or Cache Doxygen
7272
id: cache_doxygen
73-
uses: actions/cache@v3.3.2
73+
uses: actions/cache@v4.0.2
7474
with:
7575
path: doxygen-src
7676
key: ${{ runner.os }}-doxygen-${{ env.DOXYGEN_VERSION }}

.github/workflows/build_examples.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
fi
4040
4141
- name: Restore or Cache pip
42-
uses: actions/cache@v3.3.2
42+
uses: actions/cache@v4.0.2
4343
with:
4444
path: ~/.cache/pip
4545
# if requirements.txt hasn't changed, then it will be a "cache hit" and pip will be restored
@@ -48,7 +48,7 @@ jobs:
4848
restore-keys: ${{ runner.os }}-pip-
4949

5050
- name: Restore or Cache PlatformIO and Libraries
51-
uses: actions/cache@v3.3.2
51+
uses: actions/cache@v4.0.2
5252
with:
5353
path: ~/.platformio
5454
# if nothing in the lock files has changed, then it will be a "cache hit" and pip will be restored

.github/workflows/prepare_release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
echo "VERSION=$VER" >> $GITHUB_ENV
2929
3030
- name: Restore or Cache pip
31-
uses: actions/cache@v3.3.2
31+
uses: actions/cache@v4.0.2
3232
with:
3333
path: ~/.cache/pip
3434
# if requirements.txt hasn't changed, then it will be a "cache hit" and pip will be restored

.github/workflows/verify_library_json.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/setup-node@v4.0.2
1616

1717
- name: Cache Node.js modules
18-
uses: actions/cache@v3.3.2
18+
uses: actions/cache@v4.0.2
1919
with:
2020
# npm cache files are stored in `~/.npm` on Linux/macOS
2121
path: ~/.npm

0 commit comments

Comments
 (0)