From c8cf2b70dc21030172f77d5ac3c579c72eacc76e Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Wed, 14 Oct 2020 11:34:41 +0200 Subject: [PATCH] buildkite: Fix audit label indentation Commit b3acb307f add the cargo-audit label but indentation is wrong, making it an invalid YAML, at least from buildkite's point of view. Signed-off-by: Samuel Ortiz --- .buildkite/pipeline.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 797f2fb..ced68bd 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -204,15 +204,15 @@ steps: always-pull: true propagate-environment: true -- label: "cargo-audit" - commands: - - cargo audit -q - retry: - automatic: false - agents: - os: linux - plugins: - - docker#v3.0.1: - image: "rustvmm/dev:v6" - always-pull: true - propagate-environment: true + - label: "cargo-audit" + commands: + - cargo audit -q + retry: + automatic: false + agents: + os: linux + plugins: + - docker#v3.0.1: + image: "rustvmm/dev:v6" + always-pull: true + propagate-environment: true