Skip to content

Commit 8c6b0fa

Browse files
authored
Merge pull request #35 from mbdevpl/dependabot/github_actions/actions/checkout-6
build(deps): bump actions/checkout from 5 to 6
2 parents 3dc9edb + 3dca163 commit 8c6b0fa

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- os: macos-latest
1818
python-version: '3.10'
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
- uses: actions/setup-python@v6
@@ -45,7 +45,7 @@ jobs:
4545
needs: build
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v5
48+
- uses: actions/checkout@v6
4949
with:
5050
fetch-depth: 0
5151
- uses: actions/setup-python@v6

test/examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
_GIT_REPOS_ROOT = pathlib.Path(os.environ.get('EXAMPLE_PROJECTS_PATH', '..')).resolve()
1313

14-
GIT_REPO_EXAMPLES = list(_ for _ in _GIT_REPOS_ROOT.glob('**/.git') if _.is_dir())
14+
GIT_REPO_EXAMPLES = list(_.parent for _ in _GIT_REPOS_ROOT.glob('**/.git') if _.is_dir())
1515

1616

1717
def python_lib_dir() -> pathlib.Path:

0 commit comments

Comments
 (0)