-
Notifications
You must be signed in to change notification settings - Fork 534
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create ADR for integrating cache functionality to setup-go action #217
Create ADR for integrating cache functionality to setup-go action #217
Conversation
with: | ||
go-version: '18' | ||
cache: true | ||
cache-dependency-path: **/go.sum |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happens if you set cache-dependency-path
without setting cache
? Does it imply cache
? I suppose there's precedent here from the other setup-
actions, but just wanted to clarify here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The cache-dependency-path input only works with enabled cache. The cache-dependency-path will override file from which cache is generated.
for reference, see #130 |
Prepare an ADR for support caching in setup-go.