ci: update bun install and artifact upload versions
Some checks failed
CI/CD Pipeline / Quick Checks (pull_request) Successful in 23s
CI/CD Pipeline / ESLint (pull_request) Successful in 11s
CI/CD Pipeline / Build Application (pull_request) Has been cancelled
CI/CD Pipeline / Security Audit (pull_request) Has been cancelled
CI/CD Pipeline / Test & Coverage (pull_request) Has been cancelled

This commit is contained in:
2025-05-27 13:07:14 +02:00
parent a4a88c1efb
commit 91ecb445fc

View File

@ -80,7 +80,7 @@ jobs:
key: node-modules-${{ needs.quick-checks.outputs.cache-key }}
- name: Install dependencies (if cache miss)
run: bun install
run: bun install --frozen-lockfile
- name: Run ESLint
run: bun run lint
@ -107,7 +107,7 @@ jobs:
key: node-modules-${{ needs.quick-checks.outputs.cache-key }}
- name: Install dependencies (if cache miss)
run: bun install
run: bun install --frozen-lockfile
- name: Cache Jest cache
uses: actions/cache@v4
@ -122,7 +122,7 @@ jobs:
NODE_OPTIONS: --max_old_space_size=4096
- name: Upload coverage reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
if: always()
with:
name: coverage-report
@ -151,7 +151,7 @@ jobs:
key: node-modules-${{ needs.quick-checks.outputs.cache-key }}
- name: Install dependencies (if cache miss)
run: bun install
run: bun install --frozen-lockfile
- name: Cache Next.js build
uses: actions/cache@v4
@ -168,7 +168,7 @@ jobs:
NODE_OPTIONS: --max_old_space_size=4096
- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: build-files
path: .next/
@ -196,7 +196,7 @@ jobs:
key: node-modules-${{ needs.quick-checks.outputs.cache-key }}
- name: Install dependencies (if cache miss)
run: bun install
run: bun install --frozen-lockfile
- name: Run security audit
run: bun audit --audit-level moderate