From 889b00edda6254ed7512be9de8d98e44f59f4d8c Mon Sep 17 00:00:00 2001 From: pooneyy <85266337+pooneyy@users.noreply.github.com> Date: Fri, 10 Oct 2025 20:38:21 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(renovate):=20remove=20unnece?= =?UTF-8?q?ssary=20chmod=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - remove redundant chmod +x command for Python script - Python scripts don't require execute permissions to run with python3 interpreter --- .github/workflows/renovate-app-version.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/renovate-app-version.yml b/.github/workflows/renovate-app-version.yml index 7df54bd24..0e378b459 100644 --- a/.github/workflows/renovate-app-version.yml +++ b/.github/workflows/renovate-app-version.yml @@ -83,7 +83,6 @@ jobs: if [[ $file == *"docker-compose.yml"* ]]; then app_name=$(echo $file | cut -d'/' -f 2) old_version=$(echo $file | cut -d'/' -f 3) - chmod +x .github/workflows/renovate-app-version.py python3 .github/workflows/renovate-app-version.py $app_name $old_version fi done