Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix GH artifacts v4 #187

Merged
merged 1 commit into from
Sep 6, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,14 +174,14 @@ jobs:

- name: Download package (oasislmf)
if: inputs.oasislmf_package != ''
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: oasislmf-bin-pkg_linux
path: ${{ github.workspace }}/

- name: Download package (ods_tools)
if: inputs.ods_package != ''
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: bin_package
path: ${{ github.workspace }}/
Expand Down Expand Up @@ -272,15 +272,15 @@ jobs:

- name: Store docker logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docker-logs${{ inputs.storage_suffix }}
path: ./docker_logs
retention-days: 3

- name: Store result data
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: output-tars${{ inputs.storage_suffix }}
path: ./tests/result/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_mdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:

- name: download ods_tools
if: needs.ods_tools.outputs.whl_filename != ''
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: bin_package
path: ${{ github.workspace }}/
Expand Down
Loading