From 3f822dc09c3b123ce301b8b0a18a650830ed00e9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 5 Jun 2022 23:01:21 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v3 --- .github/workflows/temp-http.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/temp-http.yml b/.github/workflows/temp-http.yml index 6742370..43fd61d 100644 --- a/.github/workflows/temp-http.yml +++ b/.github/workflows/temp-http.yml @@ -10,14 +10,14 @@ jobs: steps: - uses: actions/checkout@v3 - 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') }}