@@ -88,46 +88,46 @@ jobs:
88
88
89
89
- name : Run step if any file(s) changed
90
90
id : all
91
- if : steps.changed-files-specific.outputs.any_changed == 'true'
91
+ if : steps.changed-files-specific.outputs.any_modified == 'true'
92
92
run : |
93
93
echo "One or more files have changed."
94
94
95
- count="$(grep -oE "composer.*" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
95
+ count="$(grep -oE "composer.*" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
96
96
echo "$count Composer file(s) changed"
97
97
echo "composer=$count" >> $GITHUB_OUTPUT
98
98
99
- count="$(grep -oE "*.php" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
99
+ count="$(grep -oE "*.php" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
100
100
echo "$count PHP file(s) changed"
101
101
echo "php=$count" >> $GITHUB_OUTPUT
102
102
103
- count="$(grep -oE "*.xml" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
103
+ count="$(grep -oE "*.xml" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
104
104
echo "$count XML file(s) changed"
105
105
echo "xml=$count" >> $GITHUB_OUTPUT
106
106
107
- count="$(grep -oE ".github/workflows/**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
107
+ count="$(grep -oE ".github/workflows/**" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
108
108
echo "$count Workflow file(s) changed"
109
109
echo "workflow=$count" >> $GITHUB_OUTPUT
110
110
111
- count="$(grep -oE "**phpcs**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
111
+ count="$(grep -oE "**phpcs**" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
112
112
echo "$count PHPCS file(s) changed"
113
113
echo "phpcs=$count" >> $GITHUB_OUTPUT
114
114
115
- count="$(grep -oE "**php-cs-fixer**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
115
+ count="$(grep -oE "**php-cs-fixer**" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
116
116
echo "$count PHP-CS-Fixer file(s) changed"
117
117
echo "php-cs-fixer=$count" >> $GITHUB_OUTPUT
118
118
119
- count="$(grep -oE "**phpstan**" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
119
+ count="$(grep -oE "**phpstan**" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
120
120
echo "$count PHPStan file(s) changed"
121
121
echo "phpstan=$count" >> $GITHUB_OUTPUT
122
122
123
- count="$(grep -oE "dev/tests/" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
123
+ count="$(grep -oE "dev/tests/" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
124
124
echo "$count UnitTest test file(s) changed"
125
125
echo "phpunit-test=$count" >> $GITHUB_OUTPUT
126
126
127
- count="$(grep -oE "dev/phpunit*" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
127
+ count="$(grep -oE "dev/phpunit*" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
128
128
echo "$count UnitTest file(s) changed"
129
129
echo "phpunit=$count" >> $GITHUB_OUTPUT
130
130
131
- count="$(grep -oE "dev/sonar*" <<< "${{ steps.changed-files-specific.outputs.all_changed_files }}" | wc -l)"
131
+ count="$(grep -oE "dev/sonar*" <<< "${{ steps.changed-files-specific.outputs.all_modified_files }}" | wc -l)"
132
132
echo "$count Sonar file(s) changed"
133
133
echo "sonar=$count" >> $GITHUB_OUTPUT
0 commit comments