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
6 changes: 3 additions & 3 deletions .github/workflows/production-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
cp _headers dist/_headers 2>/dev/null || echo "No _headers file found"

- name: Upload build artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: frontend-build
path: nexus-reader/dist/
Expand All @@ -202,7 +202,7 @@ jobs:
echo "Publish skipped (using Bun; add bun publish if needed)"

- name: Upload source maps
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: source-maps
path: nexus-reader/dist/**/*.map
Expand All @@ -216,7 +216,7 @@ jobs:

steps:
- name: Download frontend build
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: frontend-build
path: frontend-dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
exit 0

- name: Upload audit results
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: security-audit-results
path: |
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:

- name: Upload security check results
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: custom-security-checks
path: |
Expand Down
Loading