Skip to content

Commit

Permalink
Improve documentation regarding dependencies cachin
Browse files Browse the repository at this point in the history
  • Loading branch information
artemgavrilov committed Aug 25, 2023
1 parent d085b4f commit 8018234
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ The `cache` input is optional, and caching is turned on 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.
in different subdirectories. Wildcards also supported.
If some problem that prevents success caching happens then the action issues the warning in the log and continues the execution of the pipeline.
Expand All @@ -172,7 +172,11 @@ steps:
with:
go-version: '1.17'
check-latest: true
cache-dependency-path: subdir/go.sum
cache-dependency-path: |
subdir/go.sum
tools/go.sum
# cache-dependency-path: "**/*.sum"
- run: go run hello.go
```
Expand Down

0 comments on commit 8018234

Please sign in to comment.