From 64b9950692412f35af2f961ed30fdf877f6c19a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Aug 2025 00:04:49 +0000 Subject: [PATCH] Bump actions/checkout from 4.2.2 to 5.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0. - [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.2...v5.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/check_links.yml | 4 ++-- .github/workflows/linting.yml | 2 +- .github/workflows/spellcheck.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check_links.yml b/.github/workflows/check_links.yml index 9ca06cc..3c72413 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.2 + - uses: actions/checkout@v5.0.0 - 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.2 + - uses: actions/checkout@v5.0.0 - 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 59c9015..66921ab 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.2 + - uses: actions/checkout@v5.0.0 - 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 b1d1482..f5b8a2c 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.2 + - uses: actions/checkout@v5.0.0 - name: Pull pipelinecomponents/markdown-spellcheck Image run: docker pull pipelinecomponents/markdown-spellcheck - name: Spellcheck Markdown Files