From cf0b7b2cacb99006a0bd459f5e9dc02b70b0c735 Mon Sep 17 00:00:00 2001 From: Jiun Kim <40026920+KKimj@users.noreply.github.com> Date: Wed, 27 Apr 2022 12:24:59 +0900 Subject: [PATCH] Update for `actions/cache` version to 3 (#150) --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 1cd386e..f4340ec 100644 --- a/action.yml +++ b/action.yml @@ -32,7 +32,7 @@ runs: using: 'composite' steps: - if: ${{ inputs.cache == 'true' }} - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ inputs.cache-path }} key: ${{ inputs.cache-key }}-${{ inputs.channel }}-${{ inputs.flutter-version }}