Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the github-actions group with 3 updates #297

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/health.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ jobs:
- run: ls -R single-comments

- name: Find Comment
uses: peter-evans/find-comment@d24cbe12e65c22d4761a4d5082ca0bb42bc5aaea
uses: peter-evans/find-comment@d0ee7939ee99ba35820c3e58de972e57ff8bb890
id: fc
with:
issue-number: ${{ github.event.number }}
Expand All @@ -246,7 +246,7 @@ jobs:
run: echo ${{ steps.fc.outputs.comment-id }} >> output/commentId

- name: Upload folder with number and markdown
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874
with:
name: output
path: output/
2 changes: 1 addition & 1 deletion .github/workflows/health_base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:

- name: Upload markdown
if: success() || failure()
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874
with:
name: comment-${{ inputs.check }}
path: current_repo/output/comment.md
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
echo "COMMENT_ID=$COMMENT_ID" >> $GITHUB_ENV

- name: Create comment
uses: peter-evans/create-or-update-comment@e5db2e44ee874e3b99b0e4137f1c0685435102e7
uses: peter-evans/create-or-update-comment@b91ff48c6f29dc258316a8b76d3dd6b8c6ffff1c
if: ${{ (hashFiles('output/comment.md') != '') && inputs.write-comments && (env.COMMENT_ID == '') }}
continue-on-error: true
with:
Expand All @@ -166,7 +166,7 @@ jobs:
edit-mode: replace

- name: Update comment
uses: peter-evans/create-or-update-comment@e5db2e44ee874e3b99b0e4137f1c0685435102e7
uses: peter-evans/create-or-update-comment@b91ff48c6f29dc258316a8b76d3dd6b8c6ffff1c
if: ${{ (hashFiles('output/comment.md') != '') && inputs.write-comments && (env.COMMENT_ID != '') }}
with:
comment-id: ${{ env.COMMENT_ID }}
Expand All @@ -180,7 +180,7 @@ jobs:

- name: Upload folder with number and markdown
if: ${{ !inputs.write-comments }}
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874
with:
name: output
path: output/
Expand Down