@@ -57,22 +57,25 @@ jobs:
57
57
- name : Print blocking failure status
58
58
run : echo "${{steps.check-changeset.outputs.BLOCKING_FAILURE}}"
59
59
- name : Find Comment
60
- uses : peter-evans/find-comment@v3
60
+ # This commit represents v3.1.0
61
+ uses : peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e
61
62
id : fc
62
63
with :
63
64
issue-number : ${{github.event.number}}
64
65
body-includes : Changeset File Check
65
66
- name : Create comment (missing packages)
66
67
if : ${{!steps.fc.outputs.comment-id && steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
67
- uses : peter-evans/create-or-update-comment@v4
68
+ # This commit represents v4.0.0
69
+ uses : peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
68
70
with :
69
71
issue-number : ${{github.event.number}}
70
72
body : |
71
73
### Changeset File Check :warning:
72
74
${{steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
73
75
- name : Update comment (missing packages)
74
76
if : ${{steps.fc.outputs.comment-id && steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
75
- uses : peter-evans/create-or-update-comment@v4
77
+ # This commit represents v4.0.0
78
+ uses : peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
76
79
with :
77
80
comment-id : ${{steps.fc.outputs.comment-id}}
78
81
edit-mode : replace
81
84
${{steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
82
85
- name : Update comment (no missing packages)
83
86
if : ${{steps.fc.outputs.comment-id && !steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}
84
- uses : peter-evans/create-or-update-comment@v4
87
+ # This commit represents v4.0.0
88
+ uses : peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
85
89
with :
86
90
comment-id : ${{steps.fc.outputs.comment-id}}
87
91
edit-mode : replace
0 commit comments