Files
StarPilot/opendbc_repo/.github/workflows/cache/action.yaml
T
Vehicle Researcher db0642ec47 openpilot v0.10.3 release
date: 2025-12-18T23:23:16
master commit: 154c2334110373950bac1c36fc6e943cb1208326
2025-12-18 23:23:21 -08: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