Skip to content

Commit

Permalink
Test lint output
Browse files Browse the repository at this point in the history
Signed-off-by: lubronzhan <lubronzhan@gmail.com>
  • Loading branch information
lubronzhan committed Jan 17, 2024
1 parent 7ee694d commit 9b95033
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
version: v1.55.2
# TODO: re-enable linting tools package once https://github.com/projectcontour/contour/issues/5077
# is resolved
args: --build-tags=e2e,conformance,gcp,oidc,none
args: --build-tags=e2e,conformance,gcp,oidc,none --out-${NO_FUTURE}format=colored-line-number
- uses: act10ns/slack@ed1309ab9862e57e9e583e51c7889486b9a00b0f # v2.0.0
with:
status: ${{ job.status }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ func EnsureRoleBindingsInNamespaces(ctx context.Context, cli client.Client, name
updater := func(ctx context.Context, cli client.Client, current, desired *rbacv1.RoleBinding) error {
return updateRoleBindingIfNeeded(ctx, cli, contour, current, desired)
}
objects.EnsureObject(ctx, cli, desired, updater, &rbacv1.RoleBinding{})
err := objects.EnsureObject(ctx, cli, desired, updater, &rbacv1.RoleBinding{})
errs = append(errs, err)
}

return kerrors.NewAggregate(errs)
Expand Down

0 comments on commit 9b95033

Please sign in to comment.