-
Notifications
You must be signed in to change notification settings - Fork 5
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
Update actions to v3 #7
Conversation
leemyongpakvn
commented
May 31, 2023
Questions | Answers |
---|---|
Description? | Update actions cache v2, upload artifact v1, download artifact v1 to v3 to solve deprecated warnings. |
Type? | improvement |
BC breaks? | no |
Deprecations? | no |
Fixed ticket? | Fixes #{issue URL here}, Fixes #{another issue URL here} |
Sponsor company | Your company or customer's name goes here (if applicable). |
How to test? | Build Release green in modules that use this common yml |
with: | ||
name: ${{ github.event.repository.name }} | ||
path: ../ | ||
path: /home/runner/work/${{ github.event.repository.name }} |
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.
is it necessary to change this? do you have any source confirming this change?
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.
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.
@kpodemski upload-artifact v3 does not allow ../ as path, you can see error at https://github.com/PrestaShop/pagesnotfound/pull/30/checks
The first confirmation is at https://github.com/PrestaShop/blockwishlist/pull/216/files
The second confirmation is at https://github.com/PrestaShop/pagesnotfound/pull/29/files :)
there is no automatic test for this common file
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.
Thanks @leemyongpakvn