You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also keep in mind that some workflow have specified OS switches (if matrix.os == 'ubuntu'), so it would be unfortunate if matrix.os would be renamed. I think the cleanest solution would be to somehow do a map lookup that would resolve ubuntu to ubuntu-latest and macos to macos-14.
The text was updated successfully, but these errors were encountered:
GitHub Actions now supports M1 macOS runners: https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/. However, it's not available under the
macos-latest
label until June this year: https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/I'm wondering what the best way would be to specify
macos-14
. This currently isn't possible since we automatically append-latest
:unified-github-workflows/.github/workflows/go-test.yml
Line 25 in 31914bf
Also keep in mind that some workflow have specified OS switches (
if matrix.os == 'ubuntu'
), so it would be unfortunate ifmatrix.os
would be renamed. I think the cleanest solution would be to somehow do a map lookup that would resolveubuntu
toubuntu-latest
andmacos
tomacos-14
.The text was updated successfully, but these errors were encountered: