Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ runs:
# Cache the Flutter SDK
- if: ${{ inputs.cache-sdk == 'true' }}
name: Configure Flutter SDK cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ runner.tool_cache }}/flutter-${{ runner.os }}-${{ inputs.version }}-${{ runner.arch }}
key: flutter-action-setup-flutter-${{ runner.os }}-${{ inputs.version }}-${{ inputs.channel }}-${{ runner.arch }}
# Cache the pub dependencies
- if: ${{ inputs.cache == 'true' }}
name: Configure pub dependencies cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ runner.temp }}/pub-cache
key: flutter-action-setup-flutter-${{ runner.os }}-${{ inputs.version }}-${{ inputs.channel }}-${{ runner.arch }}-${{ inputs.cache-key }}-pub-cache
Expand Down