From 987f460f59522a2bde9b74f0f2248a257f333bff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 4 Jan 2026 12:32:05 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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/test.yaml | 2 +- .github/workflows/test_other_platform.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 076837e..fc5295e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,7 +4,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 # Update-worthy. + - uses: actions/checkout@v6 # Update-worthy. with: fetch-depth: 2 - uses: actions-rs/toolchain@v1 # Update-worthy. diff --git a/.github/workflows/test_other_platform.yaml b/.github/workflows/test_other_platform.yaml index 3842cee..b3fec7a 100644 --- a/.github/workflows/test_other_platform.yaml +++ b/.github/workflows/test_other_platform.yaml @@ -9,7 +9,7 @@ jobs: test: runs-on: ${{ github.event.inputs.platform }} steps: - - uses: actions/checkout@v4 # Update-worthy. + - uses: actions/checkout@v6 # Update-worthy. - uses: actions-rs/toolchain@v1 # Update-worthy. with: profile: minimal