Skip to content

Commit

Permalink
FIx: mapping of multiple action dependencies (#850)
Browse files Browse the repository at this point in the history
* FIx: mapping of multiple action dependencies

* Update internal/cli/actions.go

---------

Co-authored-by: Will Vedder <[email protected]>
  • Loading branch information
Tenrys and willvedd authored Sep 20, 2023
1 parent 66252ab commit 6fe8277
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/cli/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -548,8 +548,8 @@ func inputDependenciesToActionDependencies(dependencies map[string]string) *[]ma

for name, version := range dependencies {
actionDependencyList = append(actionDependencyList, management.ActionDependency{
Name: &name,
Version: &version,
Name: auth0.String(name),
Version: auth0.String(version),
})
}

Expand Down

0 comments on commit 6fe8277

Please sign in to comment.