diff --git a/.github/workflows/anchor.yml b/.github/workflows/anchor.yml index 8208ad79..62f73c9b 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 410f2e22..7619d3fc 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 62a219d3..de653b6e 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 867a0c3b..cc8313dc 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 df3c66e4..f146d9e3 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 1ed61bcf..0d906657 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