Adafruit_Wippersnapper_Arduino icon indicating copy to clipboard operation
Adafruit_Wippersnapper_Arduino copied to clipboard

Cleanup CI warnings

Open tyeth opened this issue 1 year ago • 0 comments

Since adding the caching of nanopb logic, there is a warning if the job doesn't save to the cache. Resolve with something like:

- name: Check if cache exists
  id: cache-check
  uses: actions/cache@v4
  with:
    path: ./nanopb-0.4.8.tar.gz
    key: nanopb-0.4.8
    enableCrossOsArchive: false

- name: Cache nanopb
  if: steps.cache-check.outputs.cache-hit != 'true'
  uses: actions/cache@v4
  with:
    path: ./nanopb-0.4.8.tar.gz
    key: nanopb-0.4.8
    enableCrossOsArchive: false

tyeth avatar Nov 21 '24 18:11 tyeth