Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Auto-generated] Update dependencies #190

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python 3.7
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.7'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
ref: ${{ env.DEFAULT_REPO_BRANCH }}

- name: Set up Python 3.7
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.7'

Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Fetch PR body
id: pr_body
uses: chuhlomin/render-template@v1.8
uses: chuhlomin/render-template@v1.9
with:
template: .github/static/single_dependency_pr_body.txt

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dic2owl_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python 3.7
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.7'

Expand All @@ -38,7 +38,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python 3.7
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.7'

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default_language_version:
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
# Keep at v4.4.0 to support Python 3.7
rev: v4.4.0
rev: v4.6.0
hooks:
- id: check-symlinks
- id: check-xml
Expand All @@ -24,14 +24,14 @@ repos:

- repo: https://github.com/ambv/black
# Keep at 23.3.0 to support Python 3.7
rev: 23.3.0
rev: 24.8.0
hooks:
- id: black
args:
- --config=dic2owl/pyproject.toml

- repo: https://github.com/PyCQA/bandit
rev: '1.7.5'
rev: '1.7.10'
hooks:
- id: bandit
args: [-r]
Expand All @@ -40,7 +40,7 @@ repos:

- repo: https://github.com/pre-commit/mirrors-mypy
# Keep at v1.4.1 to support Python 3.7
rev: v1.4.1
rev: v1.11.2
hooks:
- id: mypy
exclude: ^tests/.*$
Expand Down
Loading