Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/ci-cd-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ jobs:
terraform apply -auto-approve -no-color

- name: Download backend package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: backend-package
path: JNv3/apps/backend-fastapi/
Expand All @@ -476,7 +476,7 @@ jobs:
echo "FastAPI deployment configured for serverless"

- name: Download frontend build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: frontend-build
path: JNv3/apps/frontend-react/build/
Expand Down Expand Up @@ -534,7 +534,7 @@ jobs:
terraform apply -auto-approve -no-color

- name: Download backend package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: backend-package
path: JNv3/apps/backend-fastapi/
Expand All @@ -549,7 +549,7 @@ jobs:
echo "FastAPI deployment configured for serverless"

- name: Download frontend build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: frontend-build
path: JNv3/apps/frontend-react/build/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -417,12 +417,12 @@ jobs:
uses: actions/checkout@v4

- name: Download release artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: release-artifacts-${{ needs.validate-release.outputs.version }}

- name: Download changelog
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: changelog

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-comprehensive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ jobs:

steps:
- name: Download all security reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: security-reports/

Expand Down
Loading