Skip to content

Commit f6d1955

Browse files
committed
Use env vars to get rid of warnings.
1 parent c8911b2 commit f6d1955

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/rails_application.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ jobs:
7373
fi
7474
fi
7575
76-
echo "::set-output name=mutant_mode::${FINAL_MUTANT_MODE}"
77-
echo "::set-output name=mutant_since_target::${FINAL_SINCE_TARGET}"
78-
echo "::set-output name=num_groups::${FINAL_NUM_GROUPS}"
76+
echo "mutant_mode=${FINAL_MUTANT_MODE}" >> $GITHUB_OUTPUT
77+
echo "mutant_since_target=${FINAL_SINCE_TARGET}" >> $GITHUB_OUTPUT
78+
echo "num_groups=${FINAL_NUM_GROUPS}" >> $GITHUB_OUTPUT
7979
8080
echo "--- Final Parameters ---"
8181
echo "Mutant Mode: ${FINAL_MUTANT_MODE}"
@@ -176,7 +176,7 @@ jobs:
176176
177177
if [ ${#subjects_array[@]} -eq 0 ]; then
178178
echo "No subjects found for rails_application after cleaning. Setting empty subject_groups."
179-
echo "::set-output name=subject_groups::[]"
179+
echo "subject_groups=[]" >> $GITHUB_OUTPUT
180180
exit 0
181181
fi
182182
@@ -202,7 +202,7 @@ jobs:
202202
fi
203203
done
204204
echo "Generated subject_groups for rails_application: [$groups_json_array_content]"
205-
echo "::set-output name=subject_groups::[$groups_json_array_content]"
205+
echo "subject_groups=[$groups_json_array_content]" >> $GITHUB_OUTPUT
206206
207207
mutate:
208208
needs: [determine_run_parameters, prepare_mutation_subjects_rails]

0 commit comments

Comments
 (0)