Files
self/.github/actions/cache-pods/action.yml
Justin Hernandez 71a6b49140 small collection bugfixes for two point nine (#1446)
* fix addhaar typo

* consolidate mobile app links and add tests

* fix caching issues for pipelines

* fix gitleaks

* update binary merkle root.circom package source

* fix cache

* update path

* rename lockfile

* fix qrcode error

* fix mobile ci tests and prettier

* fix qr code typing

* fix qrcode pipelines

* fix integration test
2025-12-02 13:03:50 -08:00

38 lines
900 B
YAML

name: Cache Pods
description: Cache CocoaPods dependencies.
inputs:
path:
description: Paths to cache
required: false
default: |
ios/Pods
~/Library/Caches/CocoaPods
lockfile:
description: Path to Podfile.lock
required: false
default: ios/Podfile.lock
cache-version:
description: Additional cache version segment
required: false
default: v1
outputs:
cache-hit:
description: Whether an exact match was found for the cache key
value: ${{ steps.cache.outputs.cache-hit }}
runs:
using: "composite"
steps:
- id: cache
name: Cache Pods
uses: actions/cache@v4
with:
path: ${{ inputs.path }}
key: ${{ runner.os }}-pods-${{ inputs.cache-version }}-${{ hashFiles(inputs.lockfile) }}
restore-keys: |
${{ runner.os }}-pods-${{ inputs.cache-version }}-
${{ runner.os }}-pods-