Skip to content
This repository was archived by the owner on Oct 17, 2025. It is now read-only.

Commit 0b1f1e2

Browse files
chore(deps): update all non-major dependencies
1 parent 3a31732 commit 0b1f1e2

File tree

8 files changed

+24
-24
lines changed

8 files changed

+24
-24
lines changed

.github/workflows/build_logic_mainnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: '3.10'
27+
python-version: '3.14'
2828

2929
- name: Set up Poetry
30-
uses: abatilo/actions-poetry@v2.3.0
30+
uses: abatilo/actions-poetry@v2.4.0
3131
with:
3232
poetry-version: 1.4.2
3333

.github/workflows/build_logic_testnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: '3.10'
27+
python-version: '3.14'
2828

2929
- name: Set up Poetry
30-
uses: abatilo/actions-poetry@v2.3.0
30+
uses: abatilo/actions-poetry@v2.4.0
3131
with:
3232
poetry-version: 1.4.2
3333

.github/workflows/build_rewards_mainnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: '3.10'
27+
python-version: '3.14'
2828

2929
- name: Set up Poetry
30-
uses: abatilo/actions-poetry@v2.3.0
30+
uses: abatilo/actions-poetry@v2.4.0
3131
with:
3232
poetry-version: 1.4.2
3333

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: '3.10'
27+
python-version: '3.14'
2828

2929
- name: Set up Poetry
30-
uses: abatilo/actions-poetry@v2.3.0
30+
uses: abatilo/actions-poetry@v2.4.0
3131
with:
3232
poetry-version: 1.4.2
3333

3434
- name: Install python dependencies
3535
run: poetry install
3636

37-
- uses: pre-commit/action@v3.0.0
37+
- uses: pre-commit/action@v3.0.1
3838
name: "Linters and formatters check"
3939
with:
4040
extra_args: --all-files --show-diff-on-failure

.github/workflows/core_logic_mainnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ jobs:
2929
- name: Set up Python
3030
uses: actions/setup-python@v4
3131
with:
32-
python-version: '3.10'
32+
python-version: '3.14'
3333

3434
- name: Set up Poetry
35-
uses: abatilo/actions-poetry@v2.3.0
35+
uses: abatilo/actions-poetry@v2.4.0
3636
with:
3737
poetry-version: 1.4.2
3838

3939
- name: Install python dependencies
4040
run: poetry install
4141

42-
- uses: pre-commit/action@v3.0.0
42+
- uses: pre-commit/action@v3.0.1
4343
name: "Linters and formatters check"
4444
with:
4545
extra_args: --all-files --show-diff-on-failure

.github/workflows/core_logic_testnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ jobs:
2929
- name: Set up Python
3030
uses: actions/setup-python@v4
3131
with:
32-
python-version: '3.10'
32+
python-version: '3.14'
3333

3434
- name: Set up Poetry
35-
uses: abatilo/actions-poetry@v2.3.0
35+
uses: abatilo/actions-poetry@v2.4.0
3636
with:
3737
poetry-version: 1.4.2
3838

3939
- name: Install python dependencies
4040
run: poetry install
4141

42-
- uses: pre-commit/action@v3.0.0
42+
- uses: pre-commit/action@v3.0.1
4343
name: "Linters and formatters check"
4444
with:
4545
extra_args: --all-files --show-diff-on-failure

.github/workflows/depost_swap_fees_to_pool_mainnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v4
2323
with:
24-
python-version: '3.10'
24+
python-version: '3.14'
2525

2626
- name: Set up Poetry
27-
uses: abatilo/actions-poetry@v2.3.0
27+
uses: abatilo/actions-poetry@v2.4.0
2828
with:
2929
poetry-version: 1.4.2
3030

3131
- name: Install python dependencies
3232
run: poetry install
3333

34-
- uses: pre-commit/action@v3.0.0
34+
- uses: pre-commit/action@v3.0.1
3535
name: "Linters and formatters check"
3636
with:
3737
extra_args: --all-files --show-diff-on-failure

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.4.0
3+
rev: v4.6.0
44
hooks:
55
- id: check-yaml
66
- id: trailing-whitespace
77

88
- repo: https://github.com/psf/black
9-
rev: 23.3.0
9+
rev: 23.12.1
1010
hooks:
1111
- id: black
1212

1313
- repo: https://github.com/pycqa/isort
14-
rev: 5.12.0
14+
rev: 5.13.2
1515
hooks:
1616
- id: isort
1717
args: ["--profile", "black"]
1818

1919
- repo: https://github.com/myint/autoflake
20-
rev: v2.1.1
20+
rev: v2.3.1
2121
hooks:
2222
- id: autoflake
2323
args:
@@ -28,14 +28,14 @@ repos:
2828
- --ignore-init-module-imports
2929

3030
- repo: https://github.com/myint/eradicate
31-
rev: 2.2.0
31+
rev: 2.3.0
3232
hooks:
3333
- id: eradicate
3434
args:
3535
- --in-place
3636

3737
- repo: https://github.com/PyCQA/bandit
38-
rev: '1.7.5'
38+
rev: '1.8.6'
3939
hooks:
4040
- id: bandit
4141
args: ["-x", "tests/*"]

0 commit comments

Comments
 (0)