using github actions, is there a way to run pulumi...
# general
b
using github actions, is there a way to run pulumi for a go project and not re-download the deps each time? i vendored the deps via
go mod vendor
, but the GH action always refetches the deps
b
you'll need to include your go module cache, which is located at
$GOPATH/pkg/mod
This github action can help with that https://github.com/actions/cache