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
2 changes: 1 addition & 1 deletion .github/workflows/branch-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT

- name: 🏗 Setup PNPM cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT

- name: 🏗 Setup PNPM cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand All @@ -53,7 +53,7 @@ jobs:
node-version: 20.x

- name: "📦 Cache Node Modules"
uses: actions/cache@v4.3.0
uses: actions/cache@v5.0.5
id: cache-node-modules
with:
path: node_modules
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/e2e-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
echo "pnpm_cache_dir=$(pnpm store path)" >> "$GITHUB_OUTPUT"

- name: 🏗 Setup PNPM cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand All @@ -139,7 +139,7 @@ jobs:
# success; restore/save lets us save unconditionally.
- name: 🗄 Restore ccache compiler cache
id: ccache-restore
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ~/.ccache
key: ${{ runner.os }}-ccache-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand All @@ -148,7 +148,7 @@ jobs:

- name: 🗄 Restore CocoaPods (specs + downloaded sources)
id: pods-cache-restore
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
~/.cocoapods
Expand All @@ -159,7 +159,7 @@ jobs:

- name: 🗄 Restore iOS Pods/build/DerivedData
id: ios-cache-restore
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
${{ env.EXAMPLE_DIR }}/ios/Pods
Expand Down Expand Up @@ -247,14 +247,14 @@ jobs:
# GHA cache quota re-uploading identical contents.
- name: 💾 Save ccache compiler cache
if: always() && steps.ccache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ~/.ccache
key: ${{ steps.ccache-restore.outputs.cache-primary-key }}

- name: 💾 Save CocoaPods cache
if: always() && steps.pods-cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
~/.cocoapods
Expand All @@ -263,7 +263,7 @@ jobs:

- name: 💾 Save iOS Pods/build/DerivedData cache
if: always() && steps.ios-cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
${{ env.EXAMPLE_DIR }}/ios/Pods
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT

- name: 🏗 Setup PNPM cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand All @@ -48,7 +48,7 @@ jobs:
node-version: 20.x

- name: "📦 Cache Node Modules"
uses: actions/cache@v4.3.0
uses: actions/cache@v5.0.5
id: cache-node-modules
with:
path: node_modules
Expand Down
Loading