Skip to content

Commit 88c7529

Browse files
renovate[bot]JohnVillalovos
authored andcommitted
chore(deps): update all non-major dependencies
1 parent bcef988 commit 88c7529

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v4.1.7
2626
- name: Set up Python
27-
uses: actions/setup-python@v5.1.1
27+
uses: actions/setup-python@v5.2.0
2828
with:
2929
python-version: "3.12"
3030
- name: Install dependencies
@@ -34,7 +34,7 @@ jobs:
3434
TOXENV: docs
3535
run: tox
3636
- name: Archive generated docs
37-
uses: actions/upload-artifact@v4.3.6
37+
uses: actions/upload-artifact@v4.4.0
3838
with:
3939
name: html-docs
4040
path: build/sphinx/html/
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- uses: actions/checkout@v4.1.7
4646
- name: Set up Python
47-
uses: actions/setup-python@v5.1.1
47+
uses: actions/setup-python@v5.2.0
4848
with:
4949
python-version: "3.12"
5050
- name: Install dependencies

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v4.1.7
2626
with:
2727
fetch-depth: 0
28-
- uses: actions/setup-python@v5.1.1
28+
- uses: actions/setup-python@v5.2.0
2929
with:
3030
python-version: "3.12"
3131
- run: pip install --upgrade tox

.github/workflows/pre_commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- uses: actions/checkout@v4.1.7
33-
- uses: actions/setup-python@v5.1.1
33+
- uses: actions/setup-python@v5.2.0
3434
with:
3535
python-version: "3.11"
3636
- name: install tox

.github/workflows/release.yml

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

2222
- name: Python Semantic Release
2323
id: release
24-
uses: python-semantic-release/python-semantic-release@v9.8.7
24+
uses: python-semantic-release/python-semantic-release@v9.8.8
2525
with:
2626
github_token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
2727

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
steps:
5151
- uses: actions/checkout@v4.1.7
5252
- name: Set up Python ${{ matrix.python.version }}
53-
uses: actions/setup-python@v5.1.1
53+
uses: actions/setup-python@v5.2.0
5454
with:
5555
python-version: ${{ matrix.python.version }}
5656
- name: Install dependencies
@@ -68,7 +68,7 @@ jobs:
6868
steps:
6969
- uses: actions/checkout@v4.1.7
7070
- name: Set up Python
71-
uses: actions/setup-python@v5.1.1
71+
uses: actions/setup-python@v5.2.0
7272
with:
7373
python-version: "3.12"
7474
- name: Install dependencies
@@ -90,7 +90,7 @@ jobs:
9090
steps:
9191
- uses: actions/checkout@v4.1.7
9292
- name: Set up Python ${{ matrix.python-version }}
93-
uses: actions/setup-python@v5.1.1
93+
uses: actions/setup-python@v5.2.0
9494
with:
9595
python-version: "3.12"
9696
- name: Install dependencies
@@ -113,15 +113,15 @@ jobs:
113113
name: Python wheel
114114
steps:
115115
- uses: actions/checkout@v4.1.7
116-
- uses: actions/setup-python@v5.1.1
116+
- uses: actions/setup-python@v5.2.0
117117
with:
118118
python-version: "3.12"
119119
- name: Install dependencies
120120
run: |
121121
pip install -r requirements-test.txt
122122
- name: Build package
123123
run: python -m build -o dist/
124-
- uses: actions/upload-artifact@v4.3.6
124+
- uses: actions/upload-artifact@v4.4.0
125125
with:
126126
name: dist
127127
path: dist
@@ -132,7 +132,7 @@ jobs:
132132
steps:
133133
- uses: actions/checkout@v4.1.7
134134
- name: Set up Python
135-
uses: actions/setup-python@v5.1.1
135+
uses: actions/setup-python@v5.2.0
136136
with:
137137
python-version: '3.12'
138138
- uses: actions/download-artifact@v4.1.8

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repos:
2020
hooks:
2121
- id: isort
2222
- repo: https://github.com/pycqa/pylint
23-
rev: v3.2.6
23+
rev: v3.2.7
2424
hooks:
2525
- id: pylint
2626
additional_dependencies:
@@ -47,6 +47,6 @@ repos:
4747
- id: rst-directive-colons
4848
- id: rst-inline-touching-normal
4949
- repo: https://github.com/maxbrunet/pre-commit-renovate
50-
rev: 38.52.3
50+
rev: 38.59.2
5151
hooks:
5252
- id: renovate-config-validator

requirements-lint.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ commitizen==3.29.0
55
flake8==7.1.1
66
isort==5.13.2
77
mypy==1.11.2
8-
pylint==3.2.6
8+
pylint==3.2.7
99
pytest==8.3.2
1010
responses==0.25.3
1111
types-PyYAML==6.0.12.20240808

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy