Skip to content

Commit fe955b7

Browse files
authored
upgrading poetry installed in workflow (#1677)
* (minor) upgrading poetry installed in workflow * regenerate lock file with poetry 1.2.2
1 parent cd03384 commit fe955b7

File tree

6 files changed

+245
-258
lines changed

6 files changed

+245
-258
lines changed

.github/workflows/cfn-nag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
}
6363
EOT
6464
python -m pip install --upgrade pip
65-
python -m pip install poetry==1.1.15 # 1.2.0 breaking resolution of packages
65+
python -m pip install poetry==1.2.2
6666
poetry config virtualenvs.create false --local
6767
poetry install -vvv
6868
- name: CDK Synth

.github/workflows/minimal-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install Requirements
3131
run: |
3232
python -m pip install --upgrade pip
33-
python -m pip install poetry==1.1.15
33+
python -m pip install poetry==1.2.2
3434
poetry config virtualenvs.create false --local
3535
poetry install --extras "sqlserver" -vvv
3636
- name: Test Metadata

.github/workflows/static-checking.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install Requirements
3030
run: |
3131
python -m pip install --upgrade pip
32-
python -m pip install poetry==1.1.15 # 1.2.0 breaking resolution of packages
32+
python -m pip install poetry==1.2.2
3333
poetry config virtualenvs.create false --local
3434
poetry install --extras "sqlserver" -vvv
3535
- name: mypy check

0 commit comments

Comments
 (0)