File tree Expand file tree Collapse file tree 5 files changed +12
-0
lines changed Expand file tree Collapse file tree 5 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 44
44
uses : actions/setup-python@v4
45
45
with :
46
46
python-version : " 3.8"
47
+ cache : " poetry"
47
48
- name : Set release notes tag
48
49
id : release_version
49
50
# transform tag format `v<version` to `<version`
@@ -105,6 +106,13 @@ jobs:
105
106
run : |
106
107
git config user.name "Release bot"
107
108
git config user.email aws-devax-open-source@amazon.com
109
+ - name : Set up Python
110
+ uses : actions/setup-python@v4
111
+ with :
112
+ python-version : " 3.8"
113
+ cache : " poetry"
114
+ - name : Install dependencies
115
+ run : make dev
108
116
- name : Build docs website and API reference
109
117
run : |
110
118
make release-docs VERSION=${RELEASE_VERSION} ALIAS="latest"
Original file line number Diff line number Diff line change 36
36
uses : actions/setup-python@v4
37
37
with :
38
38
python-version : ${{ matrix.python-version }}
39
+ cache : " poetry"
39
40
- name : Install dependencies
40
41
run : make dev
41
42
- name : Formatting and Linting
Original file line number Diff line number Diff line change 27
27
uses : actions/setup-python@v4
28
28
with :
29
29
python-version : " 3.8"
30
+ cache : " poetry"
30
31
# Maintenance: temporarily until we drop Python 3.6 and make cfn-lint a dev dependency
31
32
- name : Setup Cloud Formation Linter with Latest Version
32
33
uses : scottbrenner/cfn-lint-action@ee9ee62016ef62c5fd366e6be920df4b310ed353 # v2.2.4
Original file line number Diff line number Diff line change 30
30
uses : actions/setup-python@v4
31
31
with :
32
32
python-version : " 3.8"
33
+ cache : " poetry"
33
34
- name : Set release notes tag
34
35
run : |
35
36
RELEASE_TAG_VERSION=${{ github.event.inputs.latest_published_version }}
Original file line number Diff line number Diff line change 21
21
with :
22
22
python-version : ${{ matrix.version }}
23
23
architecture : " x64"
24
+ cache : " poetry"
24
25
- name : Install dependencies
25
26
run : make dev
26
27
- name : Configure AWS credentials
You can’t perform that action at this time.
0 commit comments