diff --git a/.github/scripts/first-time-setup.sh b/.github/scripts/first-time-setup.sh index ce99626..801e848 100755 --- a/.github/scripts/first-time-setup.sh +++ b/.github/scripts/first-time-setup.sh @@ -51,7 +51,7 @@ name: $LOWERCASE_NAME project_files: - docker-compose.$LOWERCASE_NAME.yaml -ddev_version_constraint: '>= v1.24.3' +ddev_version_constraint: '>= v1.24.10' EOF } diff --git a/.github/scripts/update-checker.sh b/.github/scripts/update-checker.sh index 709a506..6bae04e 100755 --- a/.github/scripts/update-checker.sh +++ b/.github/scripts/update-checker.sh @@ -307,6 +307,9 @@ check_gitattributes() { if ! grep -q "tests" "$gitattributes"; then actions+=("$gitattributes should contain 'tests', see upstream file $UPSTREAM/$gitattributes") fi + if ! grep -q ".editorconfig" "$gitattributes"; then + actions+=("$gitattributes should contain '.editorconfig', see upstream file $UPSTREAM/$gitattributes") + fi else actions+=("$gitattributes is missing, see upstream file $UPSTREAM/$gitattributes") fi