From 4ae84ebe748291d75992f736d54a52be2df8821e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 05:38:37 +0000 Subject: [PATCH] Bump actions/checkout from 4.2.0 to 4.2.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.0 to 4.2.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.2.0...v4.2.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/check_links.yml | 4 ++-- .github/workflows/linting.yml | 2 +- .github/workflows/spellcheck.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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: