We’re running CircleCI 2.16.2 (latest) on prem.
I’m trying to use a 2.1 config:
version: 2.1
orbs:
microscanner: aquasecurity/microscanner@0.1.6
jobs:
docker-build:
executor: microscanner/default
steps:
- checkout
- run: docker build -t circleci/node:latest .
workflows:
scan-image:
jobs:
- docker-build
- microscanner/scan-image:
requires:
- docker-build
context: microscanner
image: circleci/node:latest
I get the following error with that config:
We weren't able to start this workflow.
Encountered errors trying to create workflows from this config: Unsupported or missing workflows config version
When searching for this problem, suggestions are to “enable build processing in your advanced project settings”.
When I navigate to “Settings > my-company > my-project > build settings > advanced settings” there is no option to enable “build processing”.
Our 2.0 configs work fine. How can I use 2.1 configs with our on-prem CircleCI?
Regards