Fix review points

README.md file was updated, removed async declaration in cache-utils
file and changed the error message in cache-save file.
This commit is contained in:
Ivan Zosimov 2022-04-27 10:56:45 +02:00
parent a4ab0b1477
commit 2d848c0e6a
5 changed files with 6 additions and 7 deletions

View file

@ -97,7 +97,7 @@ steps:
```
## Caching dependency files and build outputs:
The action has a built-in functionality for caching and restoring go modules and build outputs. It uses [actions/cache](https://github.com/actions/cache) under the hood but requires less configuration settings.The `cache` input is optional, and caching is turned off by default.
The action has a built-in functionality for caching and restoring go modules and build outputs. It uses [actions/cache](https://github.com/actions/cache) under the hood but requires less configuration settings. The `cache` input is optional, and caching is turned off by default.
The action defaults to search for the dependency file - go.sum in the repository root, and uses its hash as a part of the cache key. Use `cache-dependency-path` input for cases when multiple dependency files are used, or they are located in different subdirectories.