You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some breaking changes that affect the current workflows:
As hidden files .coverage.* are uploaded this has to be explicitly marked with the include-hidden-files: true directive
In one workflow, files cannot be uploaded to the same artifact name in multiple jobs. The artifacts have to have unique names within a workflow. This can be solved by using the name coverage-data-${{ matrix.python }}-${{ matrix.os }}. Then, in the download-artifact the directives pattern: coverage-data-* and merge-multiple: true can be used.
The text was updated successfully, but these errors were encountered:
The
upload-artifact
anddownload-artifact
actions are currently on version 3. They have to be updated to v4 by 30th of Nov. 2024, otherwise they will no longer be executed on github. See https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/There are some breaking changes that affect the current workflows:
.coverage.*
are uploaded this has to be explicitly marked with theinclude-hidden-files: true
directivecoverage-data-${{ matrix.python }}-${{ matrix.os }}
. Then, in thedownload-artifact
the directivespattern: coverage-data-*
andmerge-multiple: true
can be used.The text was updated successfully, but these errors were encountered: