From 43f8dcdf9c5e2b2b0084ec837231ec08216dbf8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 13:13:17 +0000 Subject: [PATCH] chore(deps): 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/bump-bebytes-derive.yml | 2 +- .github/workflows/bump-bebytes.yml | 2 +- .github/workflows/publish-crates.yml | 2 +- .github/workflows/rust.yml | 2 +- .github/workflows/test-branch.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bump-bebytes-derive.yml b/.github/workflows/bump-bebytes-derive.yml index 7943b01..8c286d9 100644 --- a/.github/workflows/bump-bebytes-derive.yml +++ b/.github/workflows/bump-bebytes-derive.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ secrets.PA_TOKEN }} fetch-depth: 0 diff --git a/.github/workflows/bump-bebytes.yml b/.github/workflows/bump-bebytes.yml index 8f08a9f..1b2620b 100644 --- a/.github/workflows/bump-bebytes.yml +++ b/.github/workflows/bump-bebytes.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ secrets.PA_TOKEN }} fetch-depth: 0 diff --git a/.github/workflows/publish-crates.yml b/.github/workflows/publish-crates.yml index 8ae0f33..05272a4 100644 --- a/.github/workflows/publish-crates.yml +++ b/.github/workflows/publish-crates.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ secrets.PA_TOKEN }} fetch-depth: 0 diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 96d9bb7..2cf548d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,7 +18,7 @@ jobs: if: github.actor != 'actions-user' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Rust uses: dtolnay/rust-toolchain@stable with: diff --git a/.github/workflows/test-branch.yml b/.github/workflows/test-branch.yml index 3a02335..a53221e 100644 --- a/.github/workflows/test-branch.yml +++ b/.github/workflows/test-branch.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.event.inputs.branch || github.ref }} - name: Set up Rust