From 4c556aab0ac7d2baaf13f6926ad77729e7ac5b0b Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 8 Mar 2023 22:02:23 +0100 Subject: [PATCH] Document the behavior without the version set --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 06b045b..02fa4b2 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,21 @@ The [sccache](https://github.com/mozilla/sccache/ Just copy and paste the following in your GitHub action: ``` +# Using the latest version of sccache +- name: Run sccache-cache + uses: mozilla/sccache-action@v0.0.1 +``` + +``` +# Specify a given version of sccache - name: Run sccache-cache uses: mozilla/sccache-action@v0.0.1 with: version: "v0.3.3" +``` +``` +# To get the execution stats - name: Run sccache stat for check shell: bash run: ${SCCACHE_PATH} --show-stats