Description
I am trying to setup Github action for running unit tests on the iOS project but I am getting strange results while executing it.
First build without cached CocoaPods is taking around 25 min but if cache is available just for restoring it, it takes more then a hour just for that step. I am not sure if I am doing something wrong but I would say that everything is set as it should be.
Also tried to change paths for caching step, always getting same result, and build speed is not changed at all.
First build, cache not uploaded:
Cache exists:

Cache step:
# CocoaPods cache - name: Cache CocoaPods uses: actions/cache@v4 with: path: | App/Pods ~/Library/Caches/CocoaPods ~/.cocoapods key: ${{ runner.os }}-pods-${{ hashFiles('**/versionFile.swift') }} restore-keys: | ${{ runner.os }}-pods-${{ hashFiles('**/versionFile.swift') }}
Any ideas?