Skip to content

Commit 2364fb1

Browse files
chore(ci): fix dependency resolution (#5858)
* Fixing dependency resolution * Fixing dependency resolution
1 parent 0fe4ab7 commit 2364fb1

File tree

6 files changed

+648
-431
lines changed

6 files changed

+648
-431
lines changed

.github/workflows/quality_check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
python-version: ${{ matrix.python-version }}
6262
- name: Install dependencies
63-
run: make dev
63+
run: make dev-quality-code
6464
- name: Formatting and Linting
6565
run: make lint
6666
- name: Static type checking

.github/workflows/run-e2e-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
npm ci
7171
npx cdk --version
7272
- name: Install dependencies
73-
run: make dev
73+
run: dev-quality-code
7474
- name: Configure AWS credentials
7575
uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2.2.0
7676
with:

Makefile

+7-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ target:
66

77
dev:
88
pip install --upgrade pip pre-commit poetry
9-
# @$(MAKE) dev-version-plugin
9+
@$(MAKE) dev-version-plugin
10+
poetry install --extras "all redis datamasking"
11+
pre-commit install
12+
13+
dev-quality-code:
14+
pip install --upgrade pip pre-commit poetry
1015
poetry install --extras "all redis datamasking"
1116
pre-commit install
1217

@@ -115,4 +120,4 @@ mypy:
115120

116121

117122
dev-version-plugin:
118-
poetry self add git+https://github.com/monim67/poetry-bumpversion@315fe3324a699fa12ec20e202eb7375d4327d1c4
123+
poetry self add git+https://github.com/monim67/poetry-bumpversion@348de6f247222e2953d649932426e63492e0a6bf

docs/we_made_this.md

-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ Learn to implement data masking in AWS Lambda with Powertools, protecting sensit
134134
135135
[Simplified Data Masking in AWS Lambda with Powertools](https://www.internetkatta.com/simplified-data-masking-in-aws-lambda-with-powertool){target="_blank" rel="nofollow"}
136136

137-
138137
## Videos
139138

140139
#### Building a resilient input handling with Parser

0 commit comments

Comments
 (0)