Skip to content

Commit cc44c6e

Browse files
[UPDATE] version bump to latest checkmake bd26d7905e47713ff0bf3b0e5e7b9c55f0d24e53
Changes in file .github/workflows/makefile-lint.yml: - bump to latest v0.2.2+8 bd26d7905e47713ff0bf3b0e5e7b9c55f0d24e53
1 parent 49195ba commit cc44c6e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/makefile-lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,15 @@ jobs:
3232
if: ${{ success() }}
3333
run: |
3434
yamllint ${{ vars.YAML_ARGS }} .github/workflows/makefile-lint.yml
35-
- uses: actions/checkout@v4
3635
- name: Install checkmake
3736
if: ${{ success() }}
3837
env:
3938
BUILDER_NAME: "makefile-lint"
4039
BUILDER_EMAIL: "no-reply@localhost"
4140
run: |
42-
git clone --depth 1 --branch 0.2.2 https://github.com/mrtazz/checkmake.git checkmake
41+
git clone --depth 1 --branch main https://github.com/mrtazz/checkmake.git checkmake
4342
cd checkmake
44-
EXPECTED_SHA="48ab7819837d1bdfcbac58e301478a06efebf4a8" # v0.2.2
43+
EXPECTED_SHA="bd26d7905e47713ff0bf3b0e5e7b9c55f0d24e53" # v0.2.2+8
4544
ACTUAL_SHA=$(git rev-parse HEAD)
4645
if [ "$EXPECTED_SHA" != "$ACTUAL_SHA" ]; then
4746
ERR_MSG_STUB="Checkmake repository hash verification failed."
@@ -52,11 +51,12 @@ jobs:
5251
fi
5352
make || { \
5453
ERR_MSG_STUB="Checkmake build failed." \
55-
ERR_DETS="file=.github/workflows/makefile-lint.yml,line=52,endLine=57,title=FAILURE" \
54+
ERR_DETS="file=.github/workflows/makefile-lint.yml,line=52,endLine=59,title=FAILURE" \
5655
ERR_MSG_LINE="::error ${ERR_DETS}::ERROR ${ERR_MSG_STUB}" \
5756
printf "%s\n" "${ERR_MSG_LINE}" \
5857
exit 1 \
5958
;}
59+
wait ;
6060
cd ..
6161
- name: Get makefiles Files
6262
id: makefiles

0 commit comments

Comments
 (0)