|
95 | 95 | # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-dependencies-task/Taskfile.yml
|
96 | 96 | general:cache-dep-licenses:
|
97 | 97 | desc: Cache dependency license metadata
|
| 98 | + deps: |
| 99 | + - task: general:prepare-deps |
98 | 100 | cmds:
|
99 | 101 | - |
|
100 | 102 | if ! which licensed &>/dev/null; then
|
@@ -142,6 +144,11 @@ tasks:
|
142 | 144 | codespell \
|
143 | 145 | --write-changes
|
144 | 146 |
|
| 147 | + # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-dependencies-task/Taskfile.yml |
| 148 | + general:prepare-deps: |
| 149 | + desc: Prepare project dependencies for license check |
| 150 | + # No preparation is needed for Go module-based projects. |
| 151 | + |
145 | 152 | # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml
|
146 | 153 | go:fix:
|
147 | 154 | desc: Modernize usages of outdated APIs
|
|
0 commit comments