Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rettinghaus committed Jan 29, 2024
1 parent 43cbfde commit f5ad4c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ jobs:

- name: Upload js build artifact (${{ matrix.toolkit.target }})
if: ${{ matrix.toolkit.upload == true }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.TOOLKIT_BUILD }}
path: ${{ github.workspace }}/${{ env.TEMP_DIR }}/${{ matrix.toolkit.filepath }}
Expand All @@ -301,7 +301,7 @@ jobs:
run: cp data/*.css $GITHUB_WORKSPACE/$TEMP_DIR/data/

- name: Upload font data artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.TOOLKIT_BUILD }}
path: ${{ github.workspace }}/${{ env.TEMP_DIR }}
Expand Down Expand Up @@ -455,7 +455,7 @@ jobs:
run: (cat verovio.conf ; echo "OUTPUT_DIRECTORY = $GITHUB_WORKSPACE/$DOXYGEN_DIR") | doxygen -

- name: Upload doxygen build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.DOC_BUILD }}
path: ${{ github.workspace }}/${{ env.DOXYGEN_DIR }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-ci-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:

#===============================================#
# Upload artifacts
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: cibuildwheel-${{ runner.os }}-python-${{ matrix.python-version }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:

#===============================================#
# Upload artifact
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: sdist-${{ runner.os }}-python-3.9
path: dist/*.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
ls -al
- name: Upload results as artefacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-suite-diff
path: ${{ github.workspace }}/${{ env.OUTPUT_DIR }}/
Expand Down

0 comments on commit f5ad4c2

Please sign in to comment.