Skip to content

Commit 69a2a1a

Browse files
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](actions/checkout@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] <[email protected]>
1 parent 69d6179 commit 69a2a1a

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/anchor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
total_projects: ${{ steps.analyze.outputs.total_projects }}
2727
matrix: ${{ steps.matrix.outputs.matrix }}
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- uses: dorny/paths-filter@v3
3131
id: changes
3232
if: github.event_name == 'pull_request'
@@ -103,7 +103,7 @@ jobs:
103103
outputs:
104104
failed_projects: ${{ steps.set-failed.outputs.failed_projects }}
105105
steps:
106-
- uses: actions/checkout@v4
106+
- uses: actions/checkout@v5
107107
- uses: heyAyushh/[email protected]
108108
with:
109109
anchor-version: 0.31.1
@@ -204,7 +204,7 @@ jobs:
204204
if: always()
205205
runs-on: ubuntu-latest
206206
steps:
207-
- uses: actions/checkout@v4
207+
- uses: actions/checkout@v5
208208
- name: Create job summary
209209
run: |
210210
echo "## Anchor Workflow Summary" >> $GITHUB_STEP_SUMMARY

.github/workflows/biome.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Setup Biome
1818
uses: biomejs/setup-biome@v2
1919
- name: Run Biome

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# The uses keyword specifies that this step will run v3 of the actions/checkout action.
3030
# 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).
3131
# You should use the checkout action any time your workflow will run against the repository's code.
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333

3434
# This GitHub Action installs a Rust toolchain using rustup. It is designed for one-line concise usage and good defaults.
3535
- name: Install the Rust toolchain
@@ -43,7 +43,7 @@ jobs:
4343
name: Rustfmt
4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
- uses: dtolnay/rust-toolchain@stable
4848
with:
4949
# Specific to dtolnay/rust-toolchain: Comma-separated string of additional components to install
@@ -56,7 +56,7 @@ jobs:
5656
name: Clippy
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060
- uses: dtolnay/rust-toolchain@stable
6161
with:
6262
components: clippy

.github/workflows/seahorse.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v5
1313

1414
- name: Install dependencies
1515
run: |

.github/workflows/solana-native.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
total_projects: ${{ steps.analyze.outputs.total_projects }}
2727
matrix: ${{ steps.matrix.outputs.matrix }}
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- uses: dorny/paths-filter@v3
3131
id: changes
3232
if: github.event_name == 'pull_request'
@@ -102,7 +102,7 @@ jobs:
102102
outputs:
103103
failed_projects: ${{ steps.set-failed.outputs.failed_projects }}
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v5
106106
- name: Use Node.js
107107
uses: actions/setup-node@v4
108108
with:
@@ -217,7 +217,7 @@ jobs:
217217
if: always()
218218
runs-on: ubuntu-latest
219219
steps:
220-
- uses: actions/checkout@v4
220+
- uses: actions/checkout@v5
221221
- name: Create job summary
222222
run: |
223223
echo "## Native Workflow Summary" >> $GITHUB_STEP_SUMMARY

.github/workflows/steel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
total_projects: ${{ steps.analyze.outputs.total_projects }}
2727
matrix: ${{ steps.matrix.outputs.matrix }}
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- uses: dtolnay/rust-toolchain@stable
3131
with:
3232
components: rustfmt, clippy
@@ -116,7 +116,7 @@ jobs:
116116
name: Rust Checks
117117
runs-on: ubuntu-latest
118118
steps:
119-
- uses: actions/checkout@v4
119+
- uses: actions/checkout@v5
120120
- name: Run fmt and clippy
121121
run: |
122122
readarray -t all_projects < <(echo '${{ needs.changes.outputs.changed_projects }}' | jq -r '.[]?')
@@ -145,7 +145,7 @@ jobs:
145145
outputs:
146146
failed_projects: ${{ steps.set-failed.outputs.failed_projects }}
147147
steps:
148-
- uses: actions/checkout@v4
148+
- uses: actions/checkout@v5
149149
- uses: dorny/paths-filter@v3
150150
id: changes
151151
if: github.event_name == 'pull_request'
@@ -294,7 +294,7 @@ jobs:
294294
if: always()
295295
runs-on: ubuntu-latest
296296
steps:
297-
- uses: actions/checkout@v4
297+
- uses: actions/checkout@v5
298298
- name: Create job summary
299299
run: |
300300
echo "## Steel Workflow Summary" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)