From f2bef5b3261c9d75ac09a578552257195fea300a Mon Sep 17 00:00:00 2001 From: Alex Couture-Beil Date: Tue, 23 Jan 2024 12:28:30 -0800 Subject: [PATCH] Update versions in README examples (#34) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1c74f6e..9840cb8 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ jobs: - uses: earthly/actions-setup@v1 with: github-token: ${{ secrets.GITHUB_TOKEN }} - version: "latest" # or pin to an specific version, e.g. "0.7.1" + version: "latest" # or pin to an specific version, e.g. "0.8.1" - uses: actions/checkout@v2 - name: Docker login # to avoid dockerhub rate-limiting run: docker login --username "${{ secrets.DOCKERHUB_USERNAME }}" --password "${{ secrets.DOCKERHUB_PASSWORD }}" @@ -51,7 +51,7 @@ Install a specific version of earthly: uses: earthly/actions-setup@v1 with: github-token: ${{ secrets.GITHUB_TOKEN }} - version: 0.6.1 + version: 0.8.1 ``` Install a version that adheres to a semver range @@ -61,7 +61,7 @@ Install a version that adheres to a semver range uses: earthly/actions-setup@v1 with: github-token: ${{ secrets.GITHUB_TOKEN }} - version: ^0.6.0 + version: ^0.8.0 ``` ### Testing