Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd_night.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
build: true

- name: "Upload folder to artifacts"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.ARTIFACT_NAME }}
path: ./model/scade-suite/Standalone/standalone
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
build: true

- name: "Upload folder to artifacts"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.ARTIFACT_NAME }}
path: ./model/scade-suite/Standalone/standalone
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci_cd_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
build: true

- name: "Upload folder to artifacts"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.ARTIFACT_NAME }}
path: ./model/scade-suite/Standalone/standalone
Expand All @@ -115,7 +115,7 @@ jobs:
steps:

- name: "Download HTML documentation"
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: documentation-html
path: documentation-html
Expand All @@ -127,7 +127,7 @@ jobs:
dest: documentation-html.zip

- name: "Download PDF documentation"
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: documentation-pdf
path: documentation-pdf
Expand All @@ -139,7 +139,7 @@ jobs:
dest: documentation-pdf.zip

- name: "Download Standalone"
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.ARTIFACT_NAME }}
Expand Down