Skip to content

Commit c6f4f41

Browse files
committed
ci: fix workflows - env handling, key generation, update actions and deps
1 parent 0c86ed4 commit c6f4f41

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ jobs:
4444
pytest tests/unit/ -v --cov=. --cov-report=xml --cov-report=html -n auto -m unit
4545
4646
- name: Upload coverage to Codecov
47-
uses: codecov/codecov-action@v3
47+
uses: codecov/codecov-action@v4
4848
with:
4949
file: ./backend/coverage.xml
5050
flags: backend-unit
5151
name: backend-unit-coverage
5252

5353
- name: Upload coverage artifacts
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: backend-unit-coverage
5757
path: backend/htmlcov/
@@ -104,14 +104,14 @@ jobs:
104104
pytest tests/integration/ -v --cov=. --cov-report=xml --cov-report=html -n auto -m integration
105105
106106
- name: Upload coverage to Codecov
107-
uses: codecov/codecov-action@v3
107+
uses: codecov/codecov-action@v4
108108
with:
109109
file: ./backend/coverage.xml
110110
flags: backend-integration
111111
name: backend-integration-coverage
112112

113113
- name: Upload coverage artifacts
114-
uses: actions/upload-artifact@v3
114+
uses: actions/upload-artifact@v4
115115
with:
116116
name: backend-integration-coverage
117117
path: backend/htmlcov/
@@ -148,14 +148,14 @@ jobs:
148148
npm test -- --coverage --watchAll=false --testPathPattern="tests/unit"
149149
150150
- name: Upload coverage to Codecov
151-
uses: codecov/codecov-action@v3
151+
uses: codecov/codecov-action@v4
152152
with:
153153
file: ./frontend/coverage/coverage-final.json
154154
flags: frontend-unit
155155
name: frontend-unit-coverage
156156

157157
- name: Upload coverage artifacts
158-
uses: actions/upload-artifact@v3
158+
uses: actions/upload-artifact@v4
159159
with:
160160
name: frontend-unit-coverage
161161
path: frontend/coverage/
@@ -254,7 +254,7 @@ jobs:
254254
255255
- name: Upload Playwright report
256256
if: always()
257-
uses: actions/upload-artifact@v3
257+
uses: actions/upload-artifact@v4
258258
with:
259259
name: playwright-report
260260
path: frontend/playwright-report/
@@ -319,7 +319,7 @@ jobs:
319319
uses: actions/checkout@v3
320320

321321
- name: Download all coverage artifacts
322-
uses: actions/download-artifact@v3
322+
uses: actions/download-artifact@v4
323323

324324
- name: Display coverage summary
325325
run: |

0 commit comments

Comments
 (0)