Skip to content

Commit

Permalink
Updated version numbers in ReadMe to prevent linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
toote committed Sep 19, 2022
1 parent 6ba7e32 commit f38f467
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```
Expand All @@ -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
```
Expand All @@ -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"]
Expand All @@ -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:
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit f38f467

Please sign in to comment.