From 629028e2c7a1c98b8062a532c7364b9f65ff76eb Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 17 Jun 2024 13:44:47 +0200 Subject: [PATCH] README.md: update of the doc to point to the current version --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1b81c5f..d412f19 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Just copy and paste the following in your GitHub action: ``` - name: Run sccache-cache - uses: mozilla-actions/sccache-action@v0.0.3 + uses: mozilla-actions/sccache-action@v0.0.5 ``` ### Conditionally run cache and enable it @@ -24,7 +24,7 @@ Just copy and paste the following in your GitHub action: ``` - name: Run sccache-cache only on non-release runs if: github.event_name != 'release' && github.event_name != 'workflow_dispatch' - uses: mozilla-actions/sccache-action@v0.0.3 + uses: mozilla-actions/sccache-action@v0.0.5 - name: Set Rust caching env vars only on non-release runs if: github.event_name != 'release' && github.event_name != 'workflow_dispatch' run: | @@ -36,7 +36,7 @@ Just copy and paste the following in your GitHub action: ``` - name: Run sccache-cache - uses: mozilla-actions/sccache-action@v0.0.3 + uses: mozilla-actions/sccache-action@v0.0.5 with: version: "v0.7.4" ```