Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: actions/checkout@v6

- name: 🎯 Check changed files
uses: dorny/paths-filter@v3
uses: dorny/paths-filter@v4
id: filter
with:
filters: |
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

- name: 📊 Upload actionlint results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: actionlint-results
path: actionlint.log
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:

- name: 📊 Upload test results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: frontend-test-results
path: apps/frontend/test-results/
Expand All @@ -151,7 +151,7 @@ jobs:
timeout-minutes: 5
services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
env:
POSTGRES_USER: lokifi
POSTGRES_PASSWORD: lokifi2025
Expand All @@ -165,7 +165,7 @@ jobs:
--health-retries 5

redis:
image: redis:7-alpine
image: redis:8-alpine
ports:
- 6379:6379
options: >-
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:

- name: 📊 Upload security reports
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: backend-security-reports
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/checkout@v6

- name: 🎯 Check changed files
uses: dorny/paths-filter@v3
uses: dorny/paths-filter@v4
id: filter
with:
filters: |
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Upload coverage artifact
if: matrix.node-version == '22'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: frontend-coverage-node-${{ matrix.node-version }}
path: apps/frontend/coverage/
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
working-directory: apps/backend
services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
env:
POSTGRES_USER: lokifi
POSTGRES_PASSWORD: lokifi2025
Expand All @@ -140,7 +140,7 @@ jobs:
--health-timeout 5s
--health-retries 5
redis:
image: redis:7-alpine
image: redis:8-alpine
ports:
- 6379:6379
options: >-
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:

- name: Upload coverage artifact
if: matrix.python-version == '3.13'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: backend-coverage-python-${{ matrix.python-version }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-cross-browser-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ jobs:

- name: 📊 Upload test results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: playwright-report-${{ matrix.browser }}-${{ github.run_number }}
path: apps/frontend/playwright-report/
retention-days: 14

- name: 📊 Upload test results (JSON)
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: test-results-${{ matrix.browser }}-${{ github.run_number }}
path: apps/frontend/test-results/
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
uses: actions/checkout@v6

- name: 🎯 Check changed files
uses: dorny/paths-filter@v3
uses: dorny/paths-filter@v4
id: filter
with:
filters: |
Expand All @@ -79,7 +79,7 @@ jobs:
timeout-minutes: 8
services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
env:
POSTGRES_USER: lokifi
POSTGRES_PASSWORD: lokifi2025
Expand All @@ -92,7 +92,7 @@ jobs:
--health-timeout 5s
--health-retries 5
redis:
image: redis:7-alpine
image: redis:8-alpine
ports:
- 6379:6379
options: >-
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:

- name: 📊 Upload E2E report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: e2e-critical-report
path: apps/frontend/playwright-report/
Expand All @@ -129,7 +129,7 @@ jobs:

- name: 📸 Upload test screenshots
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: e2e-critical-screenshots
path: apps/frontend/test-results/
Expand All @@ -148,7 +148,7 @@ jobs:
timeout-minutes: 15
services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
env:
POSTGRES_USER: lokifi
POSTGRES_PASSWORD: lokifi2025
Expand All @@ -161,7 +161,7 @@ jobs:
--health-timeout 5s
--health-retries 5
redis:
image: redis:7-alpine
image: redis:8-alpine
ports:
- 6379:6379
options: >-
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:

- name: 📊 Upload E2E report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: e2e-full-${{ matrix.browser }}-${{ matrix.shard }}-report
path: apps/frontend/playwright-report/
Expand All @@ -203,7 +203,7 @@ jobs:

- name: 📸 Upload test screenshots
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: e2e-full-${{ matrix.browser }}-${{ matrix.shard }}-screenshots
path: apps/frontend/test-results/
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:

- name: 📊 Upload visual regression report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: visual-regression-report
path: apps/frontend/playwright-report/
Expand All @@ -308,7 +308,7 @@ jobs:

- name: 📸 Upload visual diffs
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: visual-regression-diffs
path: apps/frontend/test-results/
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:

- name: 📊 Upload performance report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: performance-report
path: apps/frontend/playwright-report/
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: actions/checkout@v6

- name: 🎯 Check changed files
uses: dorny/paths-filter@v3
uses: dorny/paths-filter@v4
id: filter
with:
filters: |
Expand All @@ -60,7 +60,7 @@ jobs:
timeout-minutes: 8
services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
env:
POSTGRES_USER: lokifi
POSTGRES_PASSWORD: lokifi2025
Expand All @@ -73,7 +73,7 @@ jobs:
--health-timeout 5s
--health-retries 5
redis:
image: redis:7-alpine
image: redis:8-alpine
ports:
- 6379:6379
options: >-
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:

- name: 📊 Upload contract test results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: api-contract-results
path: |
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:

- name: 📊 Upload accessibility report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: accessibility-report
path: |
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:

services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
env:
POSTGRES_USER: lokifi
POSTGRES_PASSWORD: lokifi2025
Expand All @@ -208,7 +208,7 @@ jobs:
--health-timeout 5s
--health-retries 5
redis:
image: redis:7-alpine
image: redis:8-alpine
ports:
- 6379:6379
options: >-
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:

- name: 📊 Upload integration test results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: backend-integration-results-python-${{ matrix.python-version }}
path: apps/backend/test-results/
Expand All @@ -279,7 +279,7 @@ jobs:
uses: actions/checkout@v6

- name: 🐳 Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: 📦 Cache Docker layers
id: cache
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
uses: actions/checkout@v6

- name: 🎯 Check changed files
uses: dorny/paths-filter@v3
uses: dorny/paths-filter@v4
id: filter
with:
filters: |
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:

- name: 📈 Upload npm audit report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: npm-audit-report
path: apps/frontend/npm-audit.json
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:

- name: 📈 Upload pip-audit report
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: pip-audit-report
path: apps/backend/pip-audit.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack-notifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
core.setOutput('repo-url', `https://github.com/${context.repo.owner}/${context.repo.repo}`);

- name: 📢 Send Slack notification
uses: slackapi/slack-github-action@v2.1.1
uses: slackapi/slack-github-action@v3.0.1
with:
# v2 compatibility: webhook inputs (env vars deprecated in v2)
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack-pr-notifications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
core.setOutput('pr_title', pr.title);

- name: 📢 Send Slack notification
uses: slackapi/slack-github-action@v2.1.1
uses: slackapi/slack-github-action@v3.0.1
with:
# v2 compatibility: webhook inputs (env vars deprecated in v2)
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
Expand Down
Loading