diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2505afd..0fcd6e8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,11 +6,11 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v3 - - uses: actions/setup-go@v3 + uses: actions/checkout@v4 + - uses: actions/setup-go@v5 with: go-version-file: go.mod - name: golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: - version: v1.54.2 + version: v1.56.2 diff --git a/pkg/funder/funder.go b/pkg/funder/funder.go index 431ebe1..373a261 100644 --- a/pkg/funder/funder.go +++ b/pkg/funder/funder.go @@ -73,6 +73,7 @@ func Fund( return fmt.Errorf("make node lister: %w", err) } } + return fundNamespace(ctx, cfg, nl, fundingWallet, opts.log) }