diff --git a/.forgejo/workflows/yamllint.yml b/.forgejo/workflows/yamllint.yml
index 9a84f936..07c97c7c 100644
--- a/.forgejo/workflows/yamllint.yml
+++ b/.forgejo/workflows/yamllint.yml
@@ -21,8 +21,9 @@ jobs:
 
       - name: Lint .yml files
         run: | 
-          lint_output=$(find docker -name "*.yml" yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} \;)
+          lint_output=$(find docker -name "*.yml" -exec yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" {} \;)
           
+          # Check if there are any issues
           if [[ -n "$lint_output" ]]; then
             echo "$lint_output"
             exit 1