From b94f563cc534ec63bf16def770807807ca6ad1f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Drzewiecki?= Date: Wed, 23 Oct 2024 09:09:42 +0200 Subject: [PATCH 1/2] switches daily-markdown-link-check action to a concrete sha version --- .github/workflows/daily-markdown-link-check.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/daily-markdown-link-check.yaml b/.github/workflows/daily-markdown-link-check.yaml index 21f6d3a7..f8b4dcff 100644 --- a/.github/workflows/daily-markdown-link-check.yaml +++ b/.github/workflows/daily-markdown-link-check.yaml @@ -9,10 +9,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: gaurav-nelson/github-action-markdown-link-check@v1 + - uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec with: use-quiet-mode: 'yes' use-verbose-mode: 'yes' config-file: '.mlc.config.json' folder-path: '.' - max-depth: -1 \ No newline at end of file + max-depth: -1 From e45cb49a6ac0dabb43c48c7996ab7b85ff7618f1 Mon Sep 17 00:00:00 2001 From: m00g3n Date: Wed, 23 Oct 2024 19:17:13 +0200 Subject: [PATCH 2/2] fix yaml error --- .github/workflows/build_kim.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_kim.yaml b/.github/workflows/build_kim.yaml index 3b217a36..15049280 100644 --- a/.github/workflows/build_kim.yaml +++ b/.github/workflows/build_kim.yaml @@ -93,8 +93,8 @@ jobs: path: ${{ env.trivy-table }} - name: Print trivy table - if: success() || failure() - run: test -f ${{ env.trivy-table }} && cat ${{ env.trivy-table }} || echo ':: no data ::' + if: success() || failure() + run: "test -f ${{ env.trivy-table }} && cat ${{ env.trivy-table }} || echo ':: no data ::'" build-image: needs: setup