adafruit / adafruit/Adafruit_Wippersnapper_Arduino
Cleanup CI warnings
- Dominant language
- C++
- Stars
- 54
- Forks
- 56
- Avg merge
- 2d 12h
- Merged PRs (30d)
- 11
Description
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
```
Contributor guide
No contributing guide indexed for this repository
Research direction
Find the GitHub Actions workflow that downloads and caches nanopb-0.4.8, then inspect the warning produced when the cache is not saved. Update the workflow so cache lookup and saving are handled without warnings, and run or inspect the affected CI job to confirm the warning is gone.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- github-actions
- Domain
- ci-cd
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 48/100