From 2d991452557504be1cf30d50cb07ae40cdba2edc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Dec 2025 04:09:10 +0000 Subject: [PATCH] chore(deps): 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/check.yml | 8 ++++---- .github/workflows/prepare_release.yml | 2 +- .github/workflows/test.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 099c839..f13d5bc 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -19,7 +19,7 @@ jobs: if: "!contains(github.event.head_commit.message, 'chore: release')" name: stable / fmt steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install stable uses: dtolnay/rust-toolchain@stable with: @@ -39,7 +39,7 @@ jobs: # Get early warning of new lints which are regularly introduced in beta channels. toolchain: [stable, beta] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install ${{ matrix.toolchain }} uses: dtolnay/rust-toolchain@master with: @@ -56,7 +56,7 @@ jobs: name: nightly / doc steps: - run: sudo apt-get update && sudo apt-get install -y libpango1.0-dev libgraphene-1.0-dev libudev-dev libgtk-4-dev libglib2.0-dev - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install nightly uses: dtolnay/rust-toolchain@nightly - name: cargo doc @@ -72,7 +72,7 @@ jobs: name: ubuntu / ${{ matrix.msrv }} steps: - run: sudo apt-get update && sudo apt-get install -y libpango1.0-dev libgraphene-1.0-dev libudev-dev libgtk-4-dev libglib2.0-dev - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install ${{ matrix.msrv }} uses: dtolnay/rust-toolchain@master with: diff --git a/.github/workflows/prepare_release.yml b/.github/workflows/prepare_release.yml index 3412323..943da01 100644 --- a/.github/workflows/prepare_release.yml +++ b/.github/workflows/prepare_release.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest if: "!contains(github.event.head_commit.message, 'chore: release')" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eb5679a..0cddac9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: toolchain: [stable, beta] steps: - run: sudo apt-get update && sudo apt-get install -y qemu-utils libpango1.0-dev libgraphene-1.0-dev libudev-dev libgtk-4-dev libglib2.0-dev - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install ${{ matrix.toolchain }} uses: dtolnay/rust-toolchain@master with: @@ -45,7 +45,7 @@ jobs: matrix: os: [macos-latest, windows-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install stable uses: dtolnay/rust-toolchain@stable - name: cargo generate-lockfile