16
16
INVOKE_LOCAL : " True"
17
17
steps :
18
18
- name : " Check out repository code"
19
- uses : " actions/checkout@v2 "
19
+ uses : " actions/checkout@v4 "
20
20
- name : " Setup environment"
21
- uses : " networktocode/gh-action-setup-poetry-environment@v2 "
21
+ uses : " networktocode/gh-action-setup-poetry-environment@v6 "
22
22
- name : " Linting: black"
23
23
run : " poetry run invoke black"
24
24
mypy :
27
27
INVOKE_LOCAL : " True"
28
28
steps :
29
29
- name : " Check out repository code"
30
- uses : " actions/checkout@v2 "
30
+ uses : " actions/checkout@v4 "
31
31
- name : " Setup environment"
32
- uses : " networktocode/gh-action-setup-poetry-environment@v2 "
32
+ uses : " networktocode/gh-action-setup-poetry-environment@v6 "
33
33
- name : " Linting: mypy"
34
34
run : " poetry run invoke mypy"
35
35
bandit :
38
38
INVOKE_LOCAL : " True"
39
39
steps :
40
40
- name : " Check out repository code"
41
- uses : " actions/checkout@v2 "
41
+ uses : " actions/checkout@v4 "
42
42
- name : " Setup environment"
43
- uses : " networktocode/gh-action-setup-poetry-environment@v2 "
43
+ uses : " networktocode/gh-action-setup-poetry-environment@v6 "
44
44
- name : " Linting: bandit"
45
45
run : " poetry run invoke bandit"
46
46
pydocstyle :
49
49
INVOKE_LOCAL : " True"
50
50
steps :
51
51
- name : " Check out repository code"
52
- uses : " actions/checkout@v2 "
52
+ uses : " actions/checkout@v4 "
53
53
- name : " Setup environment"
54
- uses : " networktocode/gh-action-setup-poetry-environment@v2 "
54
+ uses : " networktocode/gh-action-setup-poetry-environment@v6 "
55
55
- name : " Linting: pydocstyle"
56
56
run : " poetry run invoke pydocstyle"
57
57
flake8 :
60
60
INVOKE_LOCAL : " True"
61
61
steps :
62
62
- name : " Check out repository code"
63
- uses : " actions/checkout@v2 "
63
+ uses : " actions/checkout@v4 "
64
64
- name : " Setup environment"
65
- uses : " networktocode/gh-action-setup-poetry-environment@v2 "
65
+ uses : " networktocode/gh-action-setup-poetry-environment@v6 "
66
66
- name : " Linting: flake8"
67
67
run : " poetry run invoke flake8"
68
68
yamllint :
71
71
INVOKE_LOCAL : " True"
72
72
steps :
73
73
- name : " Check out repository code"
74
- uses : " actions/checkout@v2 "
74
+ uses : " actions/checkout@v4 "
75
75
- name : " Setup environment"
76
- uses : " networktocode/gh-action-setup-poetry-environment@v2 "
76
+ uses : " networktocode/gh-action-setup-poetry-environment@v6 "
77
77
- name : " Linting: yamllint"
78
78
run : " poetry run invoke yamllint"
79
79
pylint :
94
94
INVOKE_LOCAL : " True"
95
95
steps :
96
96
- name : " Check out repository code"
97
- uses : " actions/checkout@v2 "
97
+ uses : " actions/checkout@v4 "
98
98
- name : " Setup environment"
99
- uses : " networktocode/gh-action-setup-poetry-environment@v2 "
99
+ uses : " networktocode/gh-action-setup-poetry-environment@v6 "
100
100
- name : " Linting: Pylint"
101
101
run : " poetry run invoke pylint"
102
102
pytest :
@@ -112,9 +112,9 @@ jobs:
112
112
INVOKE_LOCAL : " True"
113
113
steps :
114
114
- name : " Check out repository code"
115
- uses : " actions/checkout@v2 "
115
+ uses : " actions/checkout@v4 "
116
116
- name : " Setup environment"
117
- uses : " networktocode/gh-action-setup-poetry-environment@v2 "
117
+ uses : " networktocode/gh-action-setup-poetry-environment@v6 "
118
118
- name : " Run Tests"
119
119
run : " poetry run invoke pytest"
120
120
publish_gh :
@@ -125,9 +125,9 @@ jobs:
125
125
if : " startsWith(github.ref, 'refs/tags/v')"
126
126
steps :
127
127
- name : " Check out repository code"
128
- uses : " actions/checkout@v2 "
128
+ uses : " actions/checkout@v4 "
129
129
- name : " Set up Python"
130
- uses : " actions/setup-python@v2 "
130
+ uses : " actions/setup-python@v5 "
131
131
with :
132
132
python-version : " 3.9"
133
133
- name : " Install Python Packages"
@@ -154,9 +154,9 @@ jobs:
154
154
if : " startsWith(github.ref, 'refs/tags/v')"
155
155
steps :
156
156
- name : " Check out repository code"
157
- uses : " actions/checkout@v2 "
157
+ uses : " actions/checkout@v4 "
158
158
- name : " Set up Python"
159
- uses : " actions/setup-python@v2 "
159
+ uses : " actions/setup-python@v5 "
160
160
with :
161
161
python-version : " 3.9"
162
162
- name : " Install Python Packages"
0 commit comments