From b1e260aa4b2541a465fa37d0dfd43c1b4148caff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 20:41:34 +0000 Subject: [PATCH] ci: bump actions/cache from 3.3.1 to 3.3.2 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.1 to 3.3.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.1...v3.3.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... 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 79b17b7..c935085 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.1 + uses: actions/cache@v3.3.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.1 + uses: actions/cache@v3.3.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.1 + uses: actions/cache@v3.3.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 ca57b83..3aaf10c 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.1 + uses: actions/cache@v3.3.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.1 + uses: actions/cache@v3.3.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 42f67bb..ab2e3a7 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.1 + uses: actions/cache@v3.3.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 8a6102f..903b683 100644 --- a/.github/workflows/verify_library_json.yaml +++ b/.github/workflows/verify_library_json.yaml @@ -15,7 +15,7 @@ jobs: uses: actions/setup-node@v3.6.0 - name: Cache Node.js modules - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 with: # npm cache files are stored in `~/.npm` on Linux/macOS path: ~/.npm