diff --git a/.github/workflows/changelog_reminder.yaml b/.github/workflows/changelog_reminder.yaml index ec8c93921..fb4c8e278 100644 --- a/.github/workflows/changelog_reminder.yaml +++ b/.github/workflows/changelog_reminder.yaml @@ -11,8 +11,9 @@ jobs: check_changes: runs-on: ubuntu-latest steps: - - name: Checkout repo - uses: actions/checkout@v2 + - uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Get changed files id: getfile @@ -25,7 +26,7 @@ jobs: echo "EOF" >> $GITHUB_ENV - name: Comment PR - uses: thollander/actions-comment-pull-request@master + uses: thollander/actions-comment-pull-request@v2 with: message: 'Thank you for the PR! The changelog has not been updated so here is a friendly reminder to check if you need at add an entry.' GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'