Skip to content

Commit c447860

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

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
]
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727

2828
- name: Clone robinhood
2929
run: |
@@ -47,7 +47,7 @@ jobs:
4747
name: Build source distribution
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v5
5151

5252
- name: Clone robinhood
5353
run: |

.github/workflows/python-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: Set up Python ${{ matrix.python-version }}
2424
uses: actions/setup-python@v5
2525
with:
@@ -57,7 +57,7 @@ jobs:
5757
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5858

5959
steps:
60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v5
6161
- uses: conda-incubator/setup-miniconda@v3
6262
with:
6363
auto-update-conda: true
@@ -82,7 +82,7 @@ jobs:
8282
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
8383

8484
steps:
85-
- uses: actions/checkout@v4
85+
- uses: actions/checkout@v5
8686
- uses: conda-incubator/setup-miniconda@v3
8787
with:
8888
auto-update-conda: true

0 commit comments

Comments
 (0)