From f38f467149873df1e86a0c5862e7475f602fa980 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20A=2E=20Bellone?= Date: Mon, 19 Sep 2022 20:09:47 -0300 Subject: [PATCH] Updated version numbers in ReadMe to prevent linter warnings --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 08bef37..48bb402 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ steps: - command: "go build -o dist/my-app ." artifact_paths: "./dist/my-app" plugins: - - docker#v4.0.0: + - docker#v4.1.0: image: "golang:1.11" ``` @@ -23,7 +23,7 @@ Windows images are also supported: steps: - command: "dotnet publish -c Release -o published" plugins: - - docker#v4.0.0: + - docker#v4.1.0: image: "microsoft/dotnet:latest" always-pull: true ``` @@ -33,7 +33,7 @@ If you want to control how your command is passed to the docker container, you c ```yml steps: - plugins: - - docker#v4.0.0: + - docker#v4.1.0: image: "mesosphere/aws-cli" always-pull: true command: ["s3", "sync", "s3://my-bucket/dist/", "/app/dist"] @@ -50,7 +50,7 @@ steps: - "yarn install" - "yarn run test" plugins: - - docker#v4.0.0: + - docker#v4.1.0: image: "node:7" always-pull: true environment: @@ -70,7 +70,7 @@ steps: env: MY_SPECIAL_BUT_PUBLIC_VALUE: kittens plugins: - - docker#v4.0.0: + - docker#v4.1.0: image: "node:7" always-pull: true propagate-environment: true @@ -86,7 +86,7 @@ steps: env: MY_SPECIAL_BUT_PUBLIC_VALUE: kittens plugins: - - docker#v4.0.0: + - docker#v4.1.0: image: "node:7" always-pull: true propagate-aws-auth-tokens: true @@ -100,7 +100,7 @@ steps: - "docker build . -t image:tag" - "docker push image:tag" plugins: - - docker#v4.0.0: + - docker#v4.1.0: image: "docker:latest" always-pull: true volumes: @@ -113,7 +113,7 @@ You can disable the default behaviour of mounting in the checkout to `workdir`: steps: - command: "npm start" plugins: - - docker#v4.0.0: + - docker#v4.1.0: image: "node:7" always-pull: true mount-checkout: false