diff --git a/.github/workflows/check-rli.yml b/.github/workflows/check-rli.yml index 17fdf0284b7..668db030f25 100644 --- a/.github/workflows/check-rli.yml +++ b/.github/workflows/check-rli.yml @@ -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 @@ -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: @@ -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! @@ -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 }}