Files
opendbc-meb/.github/workflows/cache/action.yaml
Shane Smiskol e5b1987107 Increase timeout if cache not hit (#2678)
* no cache timeout

* hmm

* 90 fine
2025-08-18 17:36:51 -07:00

14 lines
445 B
YAML

name: 'Restore cache'
runs:
using: "composite"
steps:
- name: Restore cached cppcheck
id: cppcache
uses: actions/cache@v4
with:
path: opendbc/safety/tests/misra/cppcheck/
key: cppcheck-cache-${{ runner.os }}-${{ hashFiles('opendbc/safety/tests/misra/install.sh') }}
- name: Set cache-hit output
run: echo "cache-hit=${{ steps.cppcache.outputs.cache-hit }}" >> $GITHUB_OUTPUT
shell: bash