Skip to content

Commit 4e6f49c

Browse files
committed
Updates CI versions
1 parent 7d17b32 commit 4e6f49c

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.github/workflows/ci.yml

+20-20
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
INVOKE_LOCAL: "True"
1717
steps:
1818
- name: "Check out repository code"
19-
uses: "actions/checkout@v2"
19+
uses: "actions/checkout@v4"
2020
- name: "Setup environment"
21-
uses: "networktocode/gh-action-setup-poetry-environment@v2"
21+
uses: "networktocode/gh-action-setup-poetry-environment@v6"
2222
- name: "Linting: black"
2323
run: "poetry run invoke black"
2424
mypy:
@@ -27,9 +27,9 @@ jobs:
2727
INVOKE_LOCAL: "True"
2828
steps:
2929
- name: "Check out repository code"
30-
uses: "actions/checkout@v2"
30+
uses: "actions/checkout@v4"
3131
- name: "Setup environment"
32-
uses: "networktocode/gh-action-setup-poetry-environment@v2"
32+
uses: "networktocode/gh-action-setup-poetry-environment@v6"
3333
- name: "Linting: mypy"
3434
run: "poetry run invoke mypy"
3535
bandit:
@@ -38,9 +38,9 @@ jobs:
3838
INVOKE_LOCAL: "True"
3939
steps:
4040
- name: "Check out repository code"
41-
uses: "actions/checkout@v2"
41+
uses: "actions/checkout@v4"
4242
- name: "Setup environment"
43-
uses: "networktocode/gh-action-setup-poetry-environment@v2"
43+
uses: "networktocode/gh-action-setup-poetry-environment@v6"
4444
- name: "Linting: bandit"
4545
run: "poetry run invoke bandit"
4646
pydocstyle:
@@ -49,9 +49,9 @@ jobs:
4949
INVOKE_LOCAL: "True"
5050
steps:
5151
- name: "Check out repository code"
52-
uses: "actions/checkout@v2"
52+
uses: "actions/checkout@v4"
5353
- name: "Setup environment"
54-
uses: "networktocode/gh-action-setup-poetry-environment@v2"
54+
uses: "networktocode/gh-action-setup-poetry-environment@v6"
5555
- name: "Linting: pydocstyle"
5656
run: "poetry run invoke pydocstyle"
5757
flake8:
@@ -60,9 +60,9 @@ jobs:
6060
INVOKE_LOCAL: "True"
6161
steps:
6262
- name: "Check out repository code"
63-
uses: "actions/checkout@v2"
63+
uses: "actions/checkout@v4"
6464
- name: "Setup environment"
65-
uses: "networktocode/gh-action-setup-poetry-environment@v2"
65+
uses: "networktocode/gh-action-setup-poetry-environment@v6"
6666
- name: "Linting: flake8"
6767
run: "poetry run invoke flake8"
6868
yamllint:
@@ -71,9 +71,9 @@ jobs:
7171
INVOKE_LOCAL: "True"
7272
steps:
7373
- name: "Check out repository code"
74-
uses: "actions/checkout@v2"
74+
uses: "actions/checkout@v4"
7575
- name: "Setup environment"
76-
uses: "networktocode/gh-action-setup-poetry-environment@v2"
76+
uses: "networktocode/gh-action-setup-poetry-environment@v6"
7777
- name: "Linting: yamllint"
7878
run: "poetry run invoke yamllint"
7979
pylint:
@@ -94,9 +94,9 @@ jobs:
9494
INVOKE_LOCAL: "True"
9595
steps:
9696
- name: "Check out repository code"
97-
uses: "actions/checkout@v2"
97+
uses: "actions/checkout@v4"
9898
- name: "Setup environment"
99-
uses: "networktocode/gh-action-setup-poetry-environment@v2"
99+
uses: "networktocode/gh-action-setup-poetry-environment@v6"
100100
- name: "Linting: Pylint"
101101
run: "poetry run invoke pylint"
102102
pytest:
@@ -112,9 +112,9 @@ jobs:
112112
INVOKE_LOCAL: "True"
113113
steps:
114114
- name: "Check out repository code"
115-
uses: "actions/checkout@v2"
115+
uses: "actions/checkout@v4"
116116
- name: "Setup environment"
117-
uses: "networktocode/gh-action-setup-poetry-environment@v2"
117+
uses: "networktocode/gh-action-setup-poetry-environment@v6"
118118
- name: "Run Tests"
119119
run: "poetry run invoke pytest"
120120
publish_gh:
@@ -125,9 +125,9 @@ jobs:
125125
if: "startsWith(github.ref, 'refs/tags/v')"
126126
steps:
127127
- name: "Check out repository code"
128-
uses: "actions/checkout@v2"
128+
uses: "actions/checkout@v4"
129129
- name: "Set up Python"
130-
uses: "actions/setup-python@v2"
130+
uses: "actions/setup-python@v5"
131131
with:
132132
python-version: "3.9"
133133
- name: "Install Python Packages"
@@ -154,9 +154,9 @@ jobs:
154154
if: "startsWith(github.ref, 'refs/tags/v')"
155155
steps:
156156
- name: "Check out repository code"
157-
uses: "actions/checkout@v2"
157+
uses: "actions/checkout@v4"
158158
- name: "Set up Python"
159-
uses: "actions/setup-python@v2"
159+
uses: "actions/setup-python@v5"
160160
with:
161161
python-version: "3.9"
162162
- name: "Install Python Packages"

0 commit comments

Comments
 (0)