From d44999a7b5cf368b5ec6d685d43cf37b3bed72d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 02:47:29 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/check-links.yml | 4 ++-- .github/workflows/gh-pages.yml | 2 +- .github/workflows/preview-cookbook.yml | 2 +- .github/workflows/test.yml | 2 +- .github/workflows/typos.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index 618746e..9275597 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -9,14 +9,14 @@ jobs: check-links: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: gaurav-nelson/github-action-markdown-link-check@v1 # checks all markdown files from /cookbook including all subfolders with: use-quiet-mode: 'yes' use-verbose-mode: 'yes' folder-path: 'cookbook/' - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: gaurav-nelson/github-action-markdown-link-check@v1 # checks all markdown files from root but ignores subfolders with: diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 6a229fa..8fb4f59 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -12,7 +12,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true # could be useful in the future fetch-depth: 0 # we just need the latest commit diff --git a/.github/workflows/preview-cookbook.yml b/.github/workflows/preview-cookbook.yml index f9c5c7d..abc49f5 100644 --- a/.github/workflows/preview-cookbook.yml +++ b/.github/workflows/preview-cookbook.yml @@ -12,7 +12,7 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: submodules: true # could be useful in the future fetch-depth: 0 # we just need the latest commit diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index de1e409..f0126ec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: name: Test code samples runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install toolchain uses: actions-rs/toolchain@v1 with: diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index f67d011..1eac1e8 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Actions Repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Check spelling uses: crate-ci/typos@master