Skip to content

Commit

Permalink
Update to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
sambles committed Sep 5, 2024
1 parent b717658 commit 3b48378
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Download OED spec
if: inputs.oed_spec_json != '' || inputs.oed_spec_branch != ''
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: extracted_spec
path: ${{ github.workspace }}/
Expand All @@ -100,15 +100,15 @@ jobs:
echo "source=$SRC" >> $GITHUB_OUTPUT
- name: Store source package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: src_package
path: ./dist/${{ steps.build_package.outputs.source }}
retention-days: 5

- name: Store Wheel package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bin_package
path: ./dist/${{ steps.build_package.outputs.wheel }}
retention-days: 5
retention-days: 5
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,13 @@ jobs:
# --- Sign packages --- #
- name: Download Source package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: src_package
path: ${{ github.workspace }}/

- name: Download Linux package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: bin_package
path: ${{ github.workspace }}/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-oasislmf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
pip install -r requirements.txt
- name: Download ods-tools package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: bin_package
path: ${{ github.workspace }}/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Download package (ODS-tools)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: bin_package
path: ${{ github.workspace }}/

- name: Download package (OasisDataManager)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: odm_bin_package
path: ${{ github.workspace }}/
Expand Down

0 comments on commit 3b48378

Please sign in to comment.