Skip to content

Commit 7fb950b

Browse files
committed
fix/update_cicd
1 parent 6f75293 commit 7fb950b

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: npm test -- --ci --runInBand --coverage --verbose
4545
- name: Upload coverage
4646
if: always()
47-
uses: actions/upload-artifact@v5
47+
uses: actions/upload-artifact@v7
4848
with:
4949
name: coverage-node${{ matrix.node }}
5050
path: frontend/app/coverage
@@ -72,7 +72,7 @@ jobs:
7272
run: npm run build:demo
7373
- name: Upload dist (preview artifact)
7474
if: always()
75-
uses: actions/upload-artifact@v5
75+
uses: actions/upload-artifact@v7
7676
with:
7777
name: web-dist
7878
path: frontend/app/dist

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
- name: Checkout
1717
uses: actions/checkout@v5
1818
- name: Set up Docker Buildx
19-
uses: docker/setup-buildx-action@v3
19+
uses: docker/setup-buildx-action@v4
2020
- name: Run tests via docker-compose (deterministic CI)
2121
run: |
2222
docker compose -f docker-compose.test.yml up --build --exit-code-from frontend_test
2323
- name: Upload test reports (if mounted)
2424
if: always()
25-
uses: actions/upload-artifact@v5
25+
uses: actions/upload-artifact@v7
2626
with:
2727
name: frontend-reports
2828
path: reports/frontend

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
- name: Setup Node
2222
uses: actions/setup-node@v5
2323
with:
24-
node-version: 20
24+
node-version: 24
2525
- name: Install deps
2626
working-directory: ./frontend/app
2727
run: npm i
2828
- name: Build
2929
working-directory: ./frontend/app
3030
run: npm run build:demo
3131
- name: Upload artifact
32-
uses: actions/upload-pages-artifact@v5
32+
uses: actions/upload-pages-artifact@v3
3333
with:
3434
path: ./frontend/app/dist
3535
deploy:

0 commit comments

Comments
 (0)