From 650bff8355f41ccbbe01cc69244db8fde54aa054 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 06:24:11 +0000 Subject: [PATCH 1/2] ci: bump actions/checkout from 5 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97f59e0..d83f319 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: lint-and-test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 - name: Install shfmt and bats run: | From 4df92b78701657edd45e46a47ea7e050a7ff0a20 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 24 Jun 2026 23:10:52 +0000 Subject: [PATCH 2/2] fix: replace A && B || C with if-statement in install.sh to fix SC2015 --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 708e151..b810729 100755 --- a/install.sh +++ b/install.sh @@ -64,7 +64,9 @@ case "${1:-}" in *) die "unknown argument: $1 (try --help)" ;; esac -[ -f "$SRC/muster" ] && [ -d "$SRC/lib" ] || die "run this from a muster checkout (missing muster/ lib/)" +if [ ! -f "$SRC/muster" ] || [ ! -d "$SRC/lib" ]; then + die "run this from a muster checkout (missing muster/ lib/)" +fi say "installing muster" say " from: $SRC"