-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
ci: use latest stable version of actions #4954
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
Conversation
Might as well update them all in one go so we don't have to do it later. |
c3181af
to
2b03849
Compare
There are four E2E broken, but all were broken before this PR
|
Agreed, would you like to remove it in a follow-up PR?
Will be fixed in the next Storybook release (storybookjs/storybook#19366)
They have some custom plugins that aren't compatible with Yarn v4 yet. |
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.
Could you also change the workflows that use @master
to use a tagged version?
b498812
to
8f2e8b9
Compare
Yes~~ 😃
Looks great!
OK, I made changes in this commit e0427c0 but after I modified it seems that it is explicitly defined to use node 12, but the I'm not sure if this e2e is no longer used, and it not caused by this PR either, so I decided not to pay attention to it🙈 . |
Yeah, in the future we should remove that workflow (revert #379) as we don't publish Debian packages anymore but lets leave that for another PR and just revert any changes to that workflow for now. |
GitHub Action will no longer support node12
8f2e8b9
to
da20806
Compare
OK, mission complete✌ I noticed a change in the PR title, so I updated "actions/stale" to v6, although v5 was using node 16, but upgrading to the latest version is more in line with what the PR title describes |
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.
Perfect, thank you!
e6d5244
to
45a84a5
Compare
45a84a5
to
ea9fc50
Compare
* ci: clear warning messages about `GitHub Action will no longer support node12` * ci: change the workflows that use @master to use a tagged version * ci: use `actions/stale@v6`
What's the problem this PR addresses?
GitHub announced that GitHub Action will no longer support node12 in the summer of 2023
https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
So most of Yarn's GitHub Actions have warnings
I looked at all the Action we use, here are the actions that use node 12
but I don't know why only
actions/cache@v2
has a warning 🧐....
How did you fix it?
actions/cache
from v2 to v3actions/checkout
from v2 to v3actions/upload-artifact
from v2 to v3actions/download-artifact
from v2 to v3actions/stale
from v5 to v6...
Checklist