Page MenuHomeFreeBSD

.github: Switch to v3 of actions/checkout.
ClosedPublic

Authored by jhb on Dec 20 2022, 11:31 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 18, 9:32 PM
Unknown Object (File)
Sun, Apr 14, 5:29 PM
Unknown Object (File)
Mon, Apr 8, 1:57 PM
Unknown Object (File)
Mar 12 2024, 11:46 PM
Unknown Object (File)
Jan 9 2024, 2:07 PM
Unknown Object (File)
Dec 23 2023, 5:53 PM
Unknown Object (File)
Dec 22 2023, 11:42 PM
Unknown Object (File)
Dec 12 2023, 2:38 PM
Subscribers

Details

Summary

GitHub is emitting a warning that v2 is deprecated due to using Node.js

Reported by: GitHub

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

jhb requested review of this revision.Dec 20 2022, 11:31 PM

Interesting that no other changes are needed

This revision is now accepted and ready to land.Dec 20 2022, 11:36 PM

Commit message looks a bit odd in phab. Sounds like this is just a nodejs update so if it still works LGTM.

Interesting that no other changes are needed

I assume that whatever API changes they made between v2 and v3 don't affect our simple use case of checking out the default ref.

Commit message looks a bit odd in phab. Sounds like this is just a nodejs update so if it still works LGTM.

Yeah, I think phab treated the '12.' as a bullet number in formatting somehow. Raw commit message:

Author: John Baldwin <jhb@FreeBSD.org>
Date:   Tue Dec 20 14:54:12 2022 -0800

    .github: Switch to v3 of actions/checkout.
    
    GitHub is emitting a warning that v2 is deprecated due to using Node.js
    12.
    
    Reported by:    GitHub

It's just updating the version of the action we use. Internally v2 uses Node.js 12 and v3 uses Node.js 16. GitHub is deprecating all actions using Node.js 12 at some date in the future (that is what the warning I noticed on a recent run in CheriBSD was about).

This revision was automatically updated to reflect the committed changes.