From fa42eba4362e36a2dc1721b338b0f20e0752347c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 12:49:15 +0000 Subject: [PATCH] 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](https://github.com/actions/cache/compare/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] --- .github/workflows/build_documentation.yaml | 6 +++--- .github/workflows/build_examples.yaml | 4 ++-- .github/workflows/prepare_release.yaml | 2 +- .github/workflows/verify_library_json.yaml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build_documentation.yaml b/.github/workflows/build_documentation.yaml index 1a59eb2..5872d10 100644 --- a/.github/workflows/build_documentation.yaml +++ b/.github/workflows/build_documentation.yaml @@ -27,7 +27,7 @@ jobs: path: code_docs/Arduino-SDI-12 - name: Restore or Cache pip - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.2 id: cache_pip with: path: ~/.cache/pip @@ -37,7 +37,7 @@ jobs: restore-keys: ${{ runner.os }}-pip- - name: Restore or Cache PlatformIO and Libraries - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.2 id: cache_pio with: path: ~/.platformio @@ -70,7 +70,7 @@ jobs: - name: Restore or Cache Doxygen id: cache_doxygen - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.2 with: path: doxygen-src key: ${{ runner.os }}-doxygen-${{ env.DOXYGEN_VERSION }} diff --git a/.github/workflows/build_examples.yaml b/.github/workflows/build_examples.yaml index 122cea6..e4429c4 100644 --- a/.github/workflows/build_examples.yaml +++ b/.github/workflows/build_examples.yaml @@ -39,7 +39,7 @@ jobs: fi - name: Restore or Cache pip - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.2 with: path: ~/.cache/pip # if requirements.txt hasn't changed, then it will be a "cache hit" and pip will be restored @@ -48,7 +48,7 @@ jobs: restore-keys: ${{ runner.os }}-pip- - name: Restore or Cache PlatformIO and Libraries - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.2 with: path: ~/.platformio # if nothing in the lock files has changed, then it will be a "cache hit" and pip will be restored diff --git a/.github/workflows/prepare_release.yaml b/.github/workflows/prepare_release.yaml index 6adcf03..fc1d348 100644 --- a/.github/workflows/prepare_release.yaml +++ b/.github/workflows/prepare_release.yaml @@ -28,7 +28,7 @@ jobs: echo "VERSION=$VER" >> $GITHUB_ENV - name: Restore or Cache pip - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.2 with: path: ~/.cache/pip # if requirements.txt hasn't changed, then it will be a "cache hit" and pip will be restored diff --git a/.github/workflows/verify_library_json.yaml b/.github/workflows/verify_library_json.yaml index cc01a0c..2684751 100644 --- a/.github/workflows/verify_library_json.yaml +++ b/.github/workflows/verify_library_json.yaml @@ -15,7 +15,7 @@ jobs: uses: actions/setup-node@v4.0.2 - name: Cache Node.js modules - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.2 with: # npm cache files are stored in `~/.npm` on Linux/macOS path: ~/.npm