Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkl/builtins/pinact.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "./test/helpers.pkl"
description = "Pin GitHub Actions to commit SHA for security"
}
const pinact = new Config.Step {
glob = List(".github/workflows/*", "*/action.*")
glob = List(".github/workflows/*", "**/action.*")
types = List("yaml")
// `verify-comment` verifies pairs of commit SHA and version comments are correct
check_diff = new Config.CommandSpec {
Expand Down
2 changes: 1 addition & 1 deletion pkl/builtins/pinact_update.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "../Config.pkl"
description = "Pin GitHub Actions to update actions to latest versions"
}
const pinact_update = new Config.Step {
glob = List(".github/workflows/*", "*/action.*")
glob = List(".github/workflows/*", "**/action.*")
types = List("yaml")
// `verify-comment` verifies pairs of commit SHA and version comments are correct
check_diff = new Config.CommandSpec {
Expand Down
Loading