Fix syntax error in ids-check.yml workflow (#175629)

[petrhosek](https://github.com/petrhosek) commented on this PR went in
https://github.com/llvm/llvm-project/pull/172673#issuecomment-3740109442
that the ids check workflow has a syntax error in it. After looking at
the workflow, it appears to be missing - on the uses lines. After this
change and having looked at the file in Githubs file editor, no syntax
error red lines are now appearing so this should fix it.
diff --git a/.github/workflows/ids-check.yml b/.github/workflows/ids-check.yml
index 4a9b610..0c31fff 100644
--- a/.github/workflows/ids-check.yml
+++ b/.github/workflows/ids-check.yml
@@ -21,13 +21,13 @@
     timeout-minutes: 10
 
     steps:
-        uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+      - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
         with:
           repository: compnerd/ids
           path: ${{ github.workspace }}/ids
           ref: b3bf35dd13d7ff244a6a6d106fe58d0eedb5743e # main
 
-        uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+      - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
         with:
           path: ${{ github.workspace }}/llvm-project
           fetch-depth: 2