-
Notifications
You must be signed in to change notification settings - Fork 57
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
Upgrade to actions/upload-artifact@v4
; fix testing matrix
#415
Conversation
tests/requirements.txt
Outdated
@@ -4,7 +4,7 @@ ruff==0.0.287 | |||
|
|||
# Runtime requirements | |||
Django>=4.2,<5.1 | |||
wagtail>=4.1 | |||
wagtail>=6.2,<6.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wagtail>=6.2,<6.3 | |
wagtail>=5.2,<6.3 |
allthough I would even go as far as <6.5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I noticed that tox has its own list of Wagtail versions. I'm not sure why that was failing locally; I'll keep digging. But I think Wagtail 6.4 fails the tests because of the migration issue that I was addressing in #414.
c35f840
to
fdfd1f3
Compare
It turns out that our pipeline wasn't checking older Wagtail versions. It only works against Wagtail 6.2 at the moment. I suggest we merge this PR to fix the pipeline. |
actions/upload-artifact@v4
actions/upload-artifact@v4
; fix testing matrix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's get this in and add the other changes as discussed
CI runs are failing with this error:
I've upgraded to v4 of the
upload-artifact
anddownload-artifact
actions: https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md.One change that affects this repository is about "Multiple uploads to the same named Artifact"; the uploads need to have distinct names, and then get merged during download.