After upgrading to 2.307 and applying terminology changes (from 'master' to 'Built-In Node'), my builds stopped working with the following error message: ‘Jenkins’ doesn’t have label ‘master’
My Jenkinsfile looks like this:
node('master') {
dir('build') {
stage('Checkout') {
...
}
}
}

