Update our "Build & Deploy", "Edit Story Metadata", and "Prepare Upgrade" scripts to use Node 16 or higher, instead of their current setting of Node 12.
GitHub has announced that actions with Node 12 will stop working in "Summer of 2023" (yeah, pretty vague) unless we switch them to a more recent version of Node.
To upgrade, we can just change the "12.x" to a "16.x" in each script. All our scripts are located in .github/workflows. Then run the scripts and make sure they still work. E.g. for build and deploy, we should make a small change to the site, and verify that the workflow is triggered and the change actually shows up on the site.
Should be pretty quick. We need to do it before Summer 2023, otherwise these scripts might stop working.
Update our "Build & Deploy", "Edit Story Metadata", and "Prepare Upgrade" scripts to use Node 16 or higher, instead of their current setting of Node 12.
GitHub has announced that actions with Node 12 will stop working in "Summer of 2023" (yeah, pretty vague) unless we switch them to a more recent version of Node.
To upgrade, we can just change the "12.x" to a "16.x" in each script. All our scripts are located in
.github/workflows. Then run the scripts and make sure they still work. E.g. for build and deploy, we should make a small change to the site, and verify that the workflow is triggered and the change actually shows up on the site.Should be pretty quick. We need to do it before Summer 2023, otherwise these scripts might stop working.