Skip to content
Open
Show file tree
Hide file tree
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 .github/workflows/analyze.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
with:
melos-version: "6.3.2"
- name: Restore Cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: cache
with:
path: /home/linuxbrew/.linuxbrew
Expand All @@ -77,7 +77,7 @@ jobs:
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
brew install swift-format
- name: Save Cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
if: steps.cache.outputs.cache-hit != 'true'
with:
path: /home/linuxbrew/.linuxbrew
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test-and-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
with:
melos-version: "6.3.2"
- name: Cache podfiles
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: "**/Pods"
key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }}
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
with:
melos-version: "6.3.2"
- name: Cache podfiles
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: "**/Pods"
key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }}
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: AVD Cache
uses: actions/cache@v4
uses: actions/cache@v5
id: avd-cache
with:
path: |
Expand All @@ -268,7 +268,7 @@ jobs:
with:
name: ${{ runner.os }}-build-artifact
- name: Cache pub global packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.pub-cache
key: ${{ runner.os }}-pub-cache-${{ env.patrol_cli_version }}
Expand Down Expand Up @@ -373,14 +373,14 @@ jobs:
with:
name: ${{ runner.os }}-build-artifact
- name: Cache podfiles
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: "**/Pods"
key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Cache pub global packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.pub-cache
key: ${{ runner.os }}-pub-cache-${{ env.patrol_cli_version }}
Expand Down
Loading