From 69a2a1ad10794dce964e0c5076e77b2a5876b1eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 15:21:26 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 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/v2...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/anchor.yml | 6 +++--- .github/workflows/biome.yml | 2 +- .github/workflows/rust.yml | 6 +++--- .github/workflows/seahorse.yml | 2 +- .github/workflows/solana-native.yml | 6 +++--- .github/workflows/steel.yml | 8 ++++---- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/anchor.yml b/.github/workflows/anchor.yml index 8208ad795..62f73c9bd 100644 --- a/.github/workflows/anchor.yml +++ b/.github/workflows/anchor.yml @@ -26,7 +26,7 @@ jobs: total_projects: ${{ steps.analyze.outputs.total_projects }} matrix: ${{ steps.matrix.outputs.matrix }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dorny/paths-filter@v3 id: changes if: github.event_name == 'pull_request' @@ -103,7 +103,7 @@ jobs: outputs: failed_projects: ${{ steps.set-failed.outputs.failed_projects }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: heyAyushh/setup-anchor@v0.31 with: anchor-version: 0.31.1 @@ -204,7 +204,7 @@ jobs: if: always() runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Create job summary run: | echo "## Anchor Workflow Summary" >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/biome.yml b/.github/workflows/biome.yml index 410f2e224..7619d3fca 100644 --- a/.github/workflows/biome.yml +++ b/.github/workflows/biome.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Biome uses: biomejs/setup-biome@v2 - name: Run Biome diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 62a219d39..de653b6ec 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -29,7 +29,7 @@ jobs: # The uses keyword specifies that this step will run v3 of the actions/checkout action. # This is an action that checks out your repository onto the runner, allowing you to run scripts or other actions against your code (such as build and test tools). # You should use the checkout action any time your workflow will run against the repository's code. - uses: actions/checkout@v4 + uses: actions/checkout@v5 # This GitHub Action installs a Rust toolchain using rustup. It is designed for one-line concise usage and good defaults. - name: Install the Rust toolchain @@ -43,7 +43,7 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@stable with: # Specific to dtolnay/rust-toolchain: Comma-separated string of additional components to install @@ -56,7 +56,7 @@ jobs: name: Clippy runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@stable with: components: clippy diff --git a/.github/workflows/seahorse.yml b/.github/workflows/seahorse.yml index 867a0c3b7..cc8313dc5 100644 --- a/.github/workflows/seahorse.yml +++ b/.github/workflows/seahorse.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 - name: Install dependencies run: | diff --git a/.github/workflows/solana-native.yml b/.github/workflows/solana-native.yml index df3c66e49..f146d9e3b 100644 --- a/.github/workflows/solana-native.yml +++ b/.github/workflows/solana-native.yml @@ -26,7 +26,7 @@ jobs: total_projects: ${{ steps.analyze.outputs.total_projects }} matrix: ${{ steps.matrix.outputs.matrix }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dorny/paths-filter@v3 id: changes if: github.event_name == 'pull_request' @@ -102,7 +102,7 @@ jobs: outputs: failed_projects: ${{ steps.set-failed.outputs.failed_projects }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use Node.js uses: actions/setup-node@v4 with: @@ -217,7 +217,7 @@ jobs: if: always() runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Create job summary run: | echo "## Native Workflow Summary" >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/steel.yml b/.github/workflows/steel.yml index 1ed61bcfa..0d9066576 100644 --- a/.github/workflows/steel.yml +++ b/.github/workflows/steel.yml @@ -26,7 +26,7 @@ jobs: total_projects: ${{ steps.analyze.outputs.total_projects }} matrix: ${{ steps.matrix.outputs.matrix }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dtolnay/rust-toolchain@stable with: components: rustfmt, clippy @@ -116,7 +116,7 @@ jobs: name: Rust Checks runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run fmt and clippy run: | readarray -t all_projects < <(echo '${{ needs.changes.outputs.changed_projects }}' | jq -r '.[]?') @@ -145,7 +145,7 @@ jobs: outputs: failed_projects: ${{ steps.set-failed.outputs.failed_projects }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dorny/paths-filter@v3 id: changes if: github.event_name == 'pull_request' @@ -294,7 +294,7 @@ jobs: if: always() runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Create job summary run: | echo "## Steel Workflow Summary" >> $GITHUB_STEP_SUMMARY