Skip to content

Commit 530a9f5

Browse files
authored
Merge pull request #38 from data-exp-lab/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 71d9cc4 + 4e03c5c commit 530a9f5

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
python: { version: "3.7", toxenv: "py37" }
3333

3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
- uses: actions/[email protected]
3737
with:
3838
python-version: ${{ matrix.python.version }}

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050

5151
# Initializes the CodeQL tools for scanning.
5252
- name: Initialize CodeQL

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- style_check
2222
- run_tests
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: actions/[email protected]
2626
with:
2727
python-version: "3.10"

.github/workflows/style-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: FString Formatting (flynt)
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- uses: actions/[email protected]
1616
with:
1717
python-version: "3.10"
@@ -26,7 +26,7 @@ jobs:
2626
name: Sort Import (isort)
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- uses: actions/[email protected]
3131
with:
3232
python-version: "3.10"
@@ -41,7 +41,7 @@ jobs:
4141
name: Code Formatting (black)
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
- uses: actions/[email protected]
4646
with:
4747
python-version: "3.10"
@@ -56,7 +56,7 @@ jobs:
5656
name: Linting (flake8)
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060
- uses: actions/[email protected]
6161
with:
6262
python-version: "3.10"

0 commit comments

Comments
 (0)