From 3259dae25dca056526f996d14f1412176815f66b Mon Sep 17 00:00:00 2001 From: Piotr Rogowski Date: Thu, 11 Aug 2022 18:40:52 +0200 Subject: [PATCH] Update actions/cache --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 3764f39..13d9831 100644 --- a/action.yml +++ b/action.yml @@ -34,14 +34,14 @@ runs: using: composite steps: - 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') }}