Skip to content

Commit d568692

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] <support@github.com>
1 parent 0dbb9b0 commit d568692

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/CI-models.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- name: Set up Python ${{ matrix.python-version }}
3030
uses: actions/setup-python@v5
3131
with:
@@ -48,7 +48,7 @@ jobs:
4848
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
4949

5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252
- name: Set up Python ${{ matrix.python-version }}
5353
uses: actions/setup-python@v5
5454
with:
@@ -71,7 +71,7 @@ jobs:
7171
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
7272

7373
steps:
74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v5
7575
- name: Set up Python ${{ matrix.python-version }}
7676
uses: actions/setup-python@v5
7777
with:

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: styfle/cancel-workflow-action@0.12.1
3636
with:
3737
access_token: ${{ github.token }}
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- name: Print concurrency group
4040
run: echo '${{ github.workflow }}-${{ github.ref }}'
4141
- name: Set up Python ${{ matrix.python-version }}
@@ -65,7 +65,7 @@ jobs:
6565
uses: styfle/cancel-workflow-action@0.12.1
6666
with:
6767
access_token: ${{ github.token }}
68-
- uses: actions/checkout@v4
68+
- uses: actions/checkout@v5
6969
- name: Print concurrency group
7070
run: echo '${{ github.workflow }}-${{ github.ref }}'
7171
- name: Set up Python ${{ matrix.python-version }}
@@ -97,7 +97,7 @@ jobs:
9797
uses: styfle/cancel-workflow-action@0.12.1
9898
with:
9999
access_token: ${{ github.token }}
100-
- uses: actions/checkout@v4
100+
- uses: actions/checkout@v5
101101
- name: Print concurrency group
102102
run: echo '${{ github.workflow }}-${{ github.ref }}'
103103
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/Publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v5
1111
with:
1212
fetch-depth: 0
1313
- run: python setup.py bdist_wheel --python-tag=py3

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
}}
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535

3636
- name: Login to DockerHub
3737
if: github.event_name != 'pull_request'

0 commit comments

Comments
 (0)