Skip to content

Commit

Permalink
update tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Starlight220 committed Aug 1, 2024
1 parent 7449949 commit 53c39c8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check-rli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout frc-docs
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: wpilibsuite/frc-docs

Expand Down Expand Up @@ -34,7 +34,7 @@ jobs:

# ---- Post Report ----
- name: Find Comment
uses: peter-evans/find-comment@v1
uses: peter-evans/find-comment@v2
id: fc
if: failure()
with:
Expand All @@ -45,14 +45,14 @@ jobs:

- name: Create comment
if: ${{ failure() && steps.fc.outputs.comment-id == 0 }}
uses: peter-evans/create-or-update-comment@v1
uses: peter-evans/create-or-update-comment@v2
with:
body: ${{ env.REPORT }}
issue-number: ${{ github.event.pull_request.number }}

- name: Update comment
if: ${{ failure() && steps.fc.outputs.comment-id != 0 }}
uses: peter-evans/create-or-update-comment@v1
uses: peter-evans/create-or-update-comment@v2
with:
body: |
### Found RLIs needing manual updates!
Expand All @@ -68,7 +68,7 @@ jobs:

- name: Update comment
if: ${{ success() && steps.fc.outputs.comment-id != 0 }}
uses: peter-evans/create-or-update-comment@v1
uses: peter-evans/create-or-update-comment@v2
with:
body: All RLIs fixed!
comment-id: ${{ steps.fc.outputs.comment-id }}
Expand Down

0 comments on commit 53c39c8

Please sign in to comment.