diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b11d7f6fc4e..ec0b2f13ee5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,6 +53,7 @@ jobs: uses: ./.github/workflows/reusable_build_dev.yaml with: arch: x86_64 + operating-systems: ['ubuntu:22.04'] git_ref: ${{ github.event.pull_request.head.sha }} minimal: false build_type: Debug diff --git a/.github/workflows/reusable_build_dev.yaml b/.github/workflows/reusable_build_dev.yaml index fbc4e75c889..6ee6a3d664b 100644 --- a/.github/workflows/reusable_build_dev.yaml +++ b/.github/workflows/reusable_build_dev.yaml @@ -11,10 +11,10 @@ on: required: true type: string operating-systems: - description: "Optional input to set a list of operating systems which the workflow uses. Defaults to ['ubuntu-22.04', 'windows-latest', 'macos-latest'] if not set" + description: "Optional input to set a list of operating systems which the workflow uses. Defaults to ['ubuntu:22.04', 'windows-latest', 'macos-latest'] if not set" required: false type: string - default: "['ubuntu-22.04', 'windows-latest', 'macos-latest']" + default: "['ubuntu:22.04', 'windows-latest', 'macos-latest']" minimal: description: Minimal build required: true