how to make jobs run synchronously on github actions

C++
jobs:
  first:
    ...

  second:
    needs: first

# GitHub Actions Tutorial with time-stamp
# https://youtu.be/R8_veQiYBjI?t=1339
Source

Also in C++: