File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 8585 MAVEN_VERSION : ${{ steps.maven.outputs.version }}
8686 SUREFIRE_VERSION : ${{ steps.surefire.outputs.version }}
8787 run : |
88+ echo "Writing resolved versions to properties files:"
89+ echo " Gradle: ${GRADLE_VERSION}"
90+ echo " Maven: ${MAVEN_VERSION}"
91+ echo " Maven Surefire: ${SUREFIRE_VERSION}"
92+
8893 printf '%s\n' \
8994 "# Pinned \"latest\" versions for CI Visibility Gradle smoke tests." \
9095 "# Updated automatically by the update-smoke-test-latest-versions workflow." \
@@ -102,9 +107,14 @@ jobs:
102107 id : check-changes
103108 run : |
104109 if [[ -z "$(git status -s)" ]]; then
105- echo "No changes to commit ."
110+ echo "No changes detected — pinned versions are already up to date ."
106111 echo "has_changes=false" >> "$GITHUB_OUTPUT"
107112 else
113+ echo "Changes detected in the following files:"
114+ git status -s
115+ echo ""
116+ echo "Diff:"
117+ git diff
108118 echo "has_changes=true" >> "$GITHUB_OUTPUT"
109119 fi
110120
You can’t perform that action at this time.
0 commit comments