Skip to content

Commit 493c7c4

Browse files
fix(deps): 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 fedffee commit 493c7c4

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/code_style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
- name: Setup Python ${{ matrix.python-version }}
1616
uses: actions/setup-python@v5
1717
with:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
- name: Initialize CodeQL
1515
uses: github/codeql-action/init@v3
1616
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
- name: Setup Python 3.7
2626
uses: actions/setup-python@v5
2727
with:

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
shell: bash
2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
- name: Setup Python ${{ matrix.python-version }}
2525
uses: actions/setup-python@v5
2626
with:
@@ -57,7 +57,7 @@ jobs:
5757
shell: bash
5858
steps:
5959
- name: Checkout code
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v5
6161
- name: Setup Python ${{ matrix.python-version }}
6262
uses: actions/setup-python@v5
6363
with:

0 commit comments

Comments
 (0)