Skip to content

Commit

Permalink
prune uses no secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
coffee-cup committed Feb 27, 2025
1 parent c71a6b3 commit 7622898
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,7 @@
"step": "install"
}
],
"name": "prune",
"secrets": [
"*"
]
"name": "prune"
},
{
"caches": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,7 @@
"step": "install"
}
],
"name": "prune",
"secrets": [
"*"
]
"name": "prune"
},
{
"caches": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,7 @@
"step": "install"
}
],
"name": "prune",
"secrets": [
"*"
]
"name": "prune"
},
{
"caches": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,7 @@
"step": "install"
}
],
"name": "prune",
"secrets": [
"*"
]
"name": "prune"
},
{
"caches": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,7 @@
"step": "install"
}
],
"name": "prune",
"secrets": [
"*"
]
"name": "prune"
},
{
"caches": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,7 @@
"step": "install"
}
],
"name": "prune",
"secrets": [
"*"
]
"name": "prune"
},
{
"caches": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,7 @@
"step": "install"
}
],
"name": "prune",
"secrets": [
"*"
]
"name": "prune"
},
{
"caches": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,7 @@
"step": "install"
}
],
"name": "prune",
"secrets": [
"*"
]
"name": "prune"
},
{
"caches": [
Expand Down
1 change: 1 addition & 0 deletions core/providers/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ func (p *NodeProvider) Plan(ctx *generate.GenerateContext) error {
// Prune
prune := ctx.NewCommandStep("prune")
prune.AddInput(plan.NewStepInput(install.Name()))
prune.Secrets = []string{}
if p.shouldPrune(ctx) {
p.PruneNodeDeps(ctx, prune)
}
Expand Down

0 comments on commit 7622898

Please sign in to comment.