From 664448da8d5b8baa1908bbf21503542381cf6225 Mon Sep 17 00:00:00 2001 From: Felix Kloss Date: Thu, 7 Sep 2023 13:36:35 +0200 Subject: [PATCH] chore: Update FIXME/TODO check --- .github/workflows/pr_todo_checks.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr_todo_checks.yml b/.github/workflows/pr_todo_checks.yml index e58efdc..41066a6 100644 --- a/.github/workflows/pr_todo_checks.yml +++ b/.github/workflows/pr_todo_checks.yml @@ -7,10 +7,9 @@ jobs: name: New FIXMEs runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - run: git fetch origin ${GITHUB_BASE_REF} + - uses: actions/checkout@v3 - name: Check for FIXMEs - uses: luator/github_action_check_new_todos@v1.0.0 + uses: luator/github_action_check_new_todos@v2 with: label: FIXME base_ref: origin/${{ github.base_ref }} @@ -19,10 +18,9 @@ jobs: name: New TODOs runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - run: git fetch origin ${GITHUB_BASE_REF} + - uses: actions/checkout@v3 - name: Check for TODOs - uses: luator/github_action_check_new_todos@v1.0.0 + uses: luator/github_action_check_new_todos@v2 with: label: TODO base_ref: origin/${{ github.base_ref }}