From 12898ef47eac2ec89bcb571ae8e923902dc0d386 Mon Sep 17 00:00:00 2001 From: kovagoadi Date: Sat, 22 Nov 2025 16:07:26 +0100 Subject: [PATCH] Fix tests --- scripts/e2e-renovate.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/e2e-renovate.sh b/scripts/e2e-renovate.sh index a7fa970..e758e85 100755 --- a/scripts/e2e-renovate.sh +++ b/scripts/e2e-renovate.sh @@ -166,7 +166,7 @@ if [ -n "$NGINX_PR_NUM" ] && [ "$NGINX_PR_NUM" != "null" ]; then # Verify Content DIFF=$(curl -s -H "Authorization: token $RENOVATE_TOKEN" "$GITEA_API_URL/repos/$REPO_OWNER/$REPO_NAME/pulls/$NGINX_PR_NUM.diff") - if echo "$DIFF" | grep -q "nginx:1.29.3"; then + if echo "$DIFF" | grep -q "nginx:1.27.5"; then echo "Content Verification: Nginx version update found in diff." else echo "Content Verification Failed: Nginx version update NOT found in diff." @@ -184,7 +184,7 @@ if [ -n "$ACTIONS_PR_NUM" ] && [ "$ACTIONS_PR_NUM" != "null" ]; then # Verify Content DIFF=$(curl -s -H "Authorization: token $RENOVATE_TOKEN" "$GITEA_API_URL/repos/$REPO_OWNER/$REPO_NAME/pulls/$ACTIONS_PR_NUM.diff") - if echo "$DIFF" | grep -q "actions/checkout@v6"; then + if echo "$DIFF" | grep -q "actions/checkout@v4"; then echo "Content Verification: Actions/Checkout version update found in diff." else echo "Content Verification Failed: Actions/Checkout version update NOT found in diff."