From 186c2a4aa90836ba9815544f54b2ad39bd0887cc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 19 Nov 2023 03:27:09 +0000 Subject: [PATCH] Update actions/cache action to v3 --- .github/workflows/esp32-cam-udp-build-check.yaml | 4 ++-- .github/workflows/esp32-control-build-check.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/esp32-cam-udp-build-check.yaml b/.github/workflows/esp32-cam-udp-build-check.yaml index 45e77a52..d559a9a1 100644 --- a/.github/workflows/esp32-cam-udp-build-check.yaml +++ b/.github/workflows/esp32-cam-udp-build-check.yaml @@ -23,14 +23,14 @@ jobs: steps: - uses: actions/checkout@v2 - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - name: Cache PlatformIO - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.platformio key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} diff --git a/.github/workflows/esp32-control-build-check.yaml b/.github/workflows/esp32-control-build-check.yaml index 33ce64dd..03260a47 100644 --- a/.github/workflows/esp32-control-build-check.yaml +++ b/.github/workflows/esp32-control-build-check.yaml @@ -23,14 +23,14 @@ jobs: steps: - uses: actions/checkout@v2 - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} restore-keys: | ${{ runner.os }}-pip- - name: Cache PlatformIO - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.platformio key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}