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

Commit 2e39a22

Browse files
chore(deps): update all non-major dependencies
1 parent 4d6dc0d commit 2e39a22

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

.github/workflows/build_logic_mainnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: 3.10
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: 3.10
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: 3.10
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
python-version: 3.10
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ jobs:
3232
python-version: 3.10
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ jobs:
3232
python-version: 3.10
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ jobs:
2424
python-version: 3.10
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.7.10'
3939
hooks:
4040
- id: bandit
4141
args: ["-x", "tests/*"]

0 commit comments

Comments
 (0)