From 8539420fc82b686c3f640210a76886ae1cdd012e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 18:32:00 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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 9275597..90d4be4 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@v5 + - uses: actions/checkout@v6 - 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@v5 + - uses: actions/checkout@v6 - 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 8fb4f59..160bb87 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@v5 + - uses: actions/checkout@v6 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 79167fb..3c0c18a 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@v5 + - uses: actions/checkout@v6 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 f0126ec..d7c90ab 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@v5 + - uses: actions/checkout@v6 - name: Install toolchain uses: actions-rs/toolchain@v1 with: diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index 1eac1e8..c881951 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@v5 + uses: actions/checkout@v6 - name: Check spelling uses: crate-ci/typos@master