Files
StarPilot/opendbc_repo/.github/workflows/cache/action.yaml
T
Vehicle Researcher 33d5cfc393 openpilot v0.10.3 release
date: 2025-12-18T23:23:16
master commit: 3cdee7b54718ee14bd85befd6c5bad3d699c5479
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