(key string)
| 168 | } |
| 169 | |
| 170 | func ensureCacheRunIDSuffix(key string) string { |
| 171 | runIdSuffix := "-${{ github.run_id }}" |
| 172 | if strings.HasSuffix(key, runIdSuffix) { |
| 173 | return key |
| 174 | } |
| 175 | return key + runIdSuffix |
| 176 | } |
| 177 | |
| 178 | func parseCacheMemoryDescription(cacheMap map[string]any, entry *CacheMemoryEntry) { |
| 179 | if descStr, ok := cacheMap["description"].(string); ok { |
no outgoing calls
no test coverage detected