Skip to content

Commit

Permalink
fix(.github/k8s-diff): use correct object keys function name
Browse files Browse the repository at this point in the history
  • Loading branch information
uhthomas committed Sep 19, 2023
1 parent 3d2f62b commit 0981d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/k8s-diff.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
const head = reduce(headList)
const results = []
for (const name of new Set([...Object.Keys(base), ...Object.Keys(head)])) {
for (const name of new Set([...Object.keys(base), ...Object.keys(head)])) {
const result = diffString(base[name], head[name])
if (result) {
results.push({
Expand Down

0 comments on commit 0981d72

Please sign in to comment.