From 5ecc7b4ff8d56e524107c7a9f35e98aecf176479 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Tue, 30 Apr 2024 12:06:31 -0400 Subject: [PATCH] pin the actions/checkout GitHub Action to a specific version --- .github/workflows/check-commits.yml | 2 +- .github/workflows/check-links.yml | 2 +- .github/workflows/check-markdown.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-commits.yml b/.github/workflows/check-commits.yml index d63c7ae..a282ce8 100644 --- a/.github/workflows/check-commits.yml +++ b/.github/workflows/check-commits.yml @@ -7,7 +7,7 @@ jobs: steps: - name: Checkout the code - uses: actions/checkout@main + uses: actions/checkout@v4.1.4 with: fetch-depth: 0 diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index 642ed47..aa66366 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -6,7 +6,7 @@ jobs: markdown-link-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@main + - uses: actions/checkout@v4.1.4 - uses: gaurav-nelson/github-action-markdown-link-check@v1 with: config-file: '.markdownlinkcheck.json' diff --git a/.github/workflows/check-markdown.yml b/.github/workflows/check-markdown.yml index 63c4c70..c3d0feb 100644 --- a/.github/workflows/check-markdown.yml +++ b/.github/workflows/check-markdown.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout this repository - uses: actions/checkout@main + uses: actions/checkout@v4.1.4 - name: Validate Markdown uses: DavidAnson/markdownlint-cli2-action@v9.0.0