3 Commits

Author SHA1 Message Date
1f59e2ef8e chore: release 1.1.5
All checks were successful
CI / ci (push) Successful in 10m56s
Build and Release to F-Droid / ci (push) Successful in 10m50s
Build and Release to F-Droid / build-and-deploy (push) Successful in 12m8s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-17 12:37:19 +01:00
de6f5a6784 fix(ci): remove dart pub audit step (unsupported in runner SDK)
All checks were successful
CI / ci (push) Successful in 10m50s
The stable Flutter SDK on the CI runner does not include
the `dart pub audit` subcommand. Trivy scan still covers
dependency security.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-17 12:06:19 +01:00
3d28aba0db fix(ci): install jq before flutter-action in CI and release workflows
Some checks failed
CI / ci (push) Failing after 3m33s
subosito/flutter-action@v2 requires jq to parse action inputs.
The ci job in both workflows was missing the install step.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-17 11:51:32 +01:00
3 changed files with 48 additions and 6 deletions

View File

@@ -43,6 +43,27 @@ jobs:
EOF
sdkmanager "platform-tools" "platforms;android-36" "build-tools;36.0.0"
- name: Install jq
run: |
set -e
SUDO=""
if command -v sudo >/dev/null 2>&1; then
SUDO="sudo"
fi
if command -v apt-get >/dev/null 2>&1; then
$SUDO apt-get update
$SUDO apt-get install -y jq
elif command -v apk >/dev/null 2>&1; then
$SUDO apk add --no-cache jq
elif command -v dnf >/dev/null 2>&1; then
$SUDO dnf install -y jq
elif command -v yum >/dev/null 2>&1; then
$SUDO yum install -y jq
else
echo "Could not find a supported package manager to install jq"
exit 1
fi
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
@@ -75,9 +96,6 @@ jobs:
run: dart pub outdated
continue-on-error: true
- name: Security audit
run: dart pub audit
- name: Trivy filesystem scan
run: |
set -e

View File

@@ -41,6 +41,27 @@ jobs:
EOF
sdkmanager "platform-tools" "platforms;android-36" "build-tools;36.0.0"
- name: Install jq
run: |
set -e
SUDO=""
if command -v sudo >/dev/null 2>&1; then
SUDO="sudo"
fi
if command -v apt-get >/dev/null 2>&1; then
$SUDO apt-get update
$SUDO apt-get install -y jq
elif command -v apk >/dev/null 2>&1; then
$SUDO apk add --no-cache jq
elif command -v dnf >/dev/null 2>&1; then
$SUDO dnf install -y jq
elif command -v yum >/dev/null 2>&1; then
$SUDO yum install -y jq
else
echo "Could not find a supported package manager to install jq"
exit 1
fi
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
@@ -73,9 +94,6 @@ jobs:
run: dart pub outdated
continue-on-error: true
- name: Security audit
run: dart pub audit
- name: Trivy filesystem scan
run: |
set -e

View File

@@ -2,6 +2,12 @@
All notable changes to HouseHoldKeeper are documented in this file.
## [1.1.5] - 2026-03-17
### Fixed
- Install jq before Flutter setup in CI and release workflows (required by subosito/flutter-action)
- Remove `dart pub audit` step (not available in stable Flutter SDK on runner)
## [1.1.4] - 2026-03-17
### Added