diff --git a/.github/workflows/check_links.yml b/.github/workflows/check_links.yml index 76886b5..c98a889 100644 --- a/.github/workflows/check_links.yml +++ b/.github/workflows/check_links.yml @@ -14,7 +14,7 @@ jobs: outputs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - - uses: actions/checkout@v4.2.0 + - uses: actions/checkout@v4.2.1 - id: set-matrix run: | set -x @@ -31,7 +31,7 @@ jobs: - name: Install markdown-link-check run: sudo npm install -g markdown-link-check - - uses: actions/checkout@v4.2.0 + - uses: actions/checkout@v4.2.1 - name: Run markdown-link-check against *.md files run: markdown-link-check --config "$(pwd)/.markdown-link-check.json" --verbose --quiet "${{ matrix.file_to_check }}" diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 4a20510..7043799 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -11,7 +11,7 @@ jobs: markdownlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.0 + - uses: actions/checkout@v4.2.1 - name: Pull markdownlint/markdownlint:latest Image run: docker pull markdownlint/markdownlint:latest - name: Run markdownlint against *.md files diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index 4962524..f6c2ede 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -10,7 +10,7 @@ jobs: spellcheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.0 + - uses: actions/checkout@v4.2.1 - name: Pull pipelinecomponents/markdown-spellcheck Image run: docker pull pipelinecomponents/markdown-spellcheck - name: Spellcheck Markdown Files @@ -18,7 +18,7 @@ jobs: # spelling: # runs-on: ubuntu-latest # steps: -# - uses: actions/checkout@v4.2.0 +# - uses: actions/checkout@v4.2.1 # - name: Set up Python # uses: actions/setup-python@v5.1.0 # with: