1.11.7 do step

Performs the given steps serially, with the same semantics as if they were at the top level step listing. Most commonly used with try step, across-step, and step-hooks.

This can be used to perform multiple steps serially in a try step:

jobs:
- name: with-do
  plan:
  - try:
      do:
      - get: black-ice
      - get: control-node
      - get: cyberdeck

resources:
- name: black-ice
  type: mock
- name: control-node
  type: mock
- name: cyberdeck
  type: mock