Skip to content

Commit

Permalink
change default runtime to nodejs10.x (potentially breaking change). C…
Browse files Browse the repository at this point in the history
…loses #784
  • Loading branch information
tj committed Oct 21, 2019
1 parent 9f44363 commit d48b478
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/lambda.go
Expand Up @@ -56,7 +56,7 @@ func (l *Lambda) Default() error {
}

if l.Runtime == "" {
l.Runtime = "nodejs8.10"
l.Runtime = "nodejs10.x"
}

l.Policy = append(l.Policy, defaultPolicy)
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Expand Up @@ -74,3 +74,5 @@ require (
golang.org/x/sys v0.0.0-20171031081856-95c657629925 // indirect
golang.org/x/text v0.0.0-20171102192421-88f656faf3f3 // indirect
)

go 1.13

0 comments on commit d48b478

Please sign in to comment.