diff --git a/.github/workflows/fmt.yml b/.github/workflows/fmt.yml index 344842e6..89e3c0b9 100644 --- a/.github/workflows/fmt.yml +++ b/.github/workflows/fmt.yml @@ -27,7 +27,7 @@ jobs: - name: install - run: make install + run: make install-tools - name: check fmt run: make fmtcheck # - name: Report Status diff --git a/.github/workflows/legacy.yml b/.github/workflows/legacy.yml index eca7a421..4f1a9c14 100644 --- a/.github/workflows/legacy.yml +++ b/.github/workflows/legacy.yml @@ -27,13 +27,13 @@ jobs: - name: Build run: make ci - name: Upload coverage - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage path: coverage.* - name: Upload dist - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist path: dist diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4c12d2d0..e5310ce0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -25,7 +25,7 @@ jobs: go-version: '1.22.6' cache: true - name: install - run: make install + run: make install-tools - name: lint run: make lint # - name: Report Status diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c99817d8..0d4a13d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,17 +25,17 @@ jobs: go-version: '1.22.6' cache: true - name: install - run: make install + run: make install-tools - name: test run: make test - name: Upload coverage - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage path: coverage.* - name: Upload dist - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist path: dist diff --git a/.github/workflows/vet.yml b/.github/workflows/vet.yml index 0a69f7e1..8c61c54f 100644 --- a/.github/workflows/vet.yml +++ b/.github/workflows/vet.yml @@ -25,7 +25,7 @@ jobs: go-version: '1.22.6' cache: true - name: install - run: make install + run: make install-tools - name: vet run: make vet # - name: Report Status diff --git a/pkg/cmd/ls/ls.go b/pkg/cmd/ls/ls.go index f10eb269..46d51e71 100644 --- a/pkg/cmd/ls/ls.go +++ b/pkg/cmd/ls/ls.go @@ -47,7 +47,7 @@ func NewCmdLs(t *terminal.Terminal, loginLsStore LsStore, noLoginLsStore LsStore Example: ` brev ls brev ls orgs - brev ls --org + brev ls --org `, PersistentPostRunE: func(cmd *cobra.Command, args []string) error { if hello.ShouldWeRunOnboardingLSStep(noLoginLsStore) && hello.ShouldWeRunOnboarding(noLoginLsStore) {