README.md prepare the version 0.0.11

This commit is contained in:
Sylvestre Ledru
2026-07-29 13:10:06 +02:00
parent a2fac7a050
commit 439ab27319
+6 -6
View File
@@ -16,7 +16,7 @@ Just copy and paste the following in your GitHub action:
```yml ```yml
- name: Run sccache-cache - name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.10 uses: mozilla-actions/sccache-action@v0.0.11
``` ```
### Conditionally run cache and enable it ### Conditionally run cache and enable it
@@ -24,7 +24,7 @@ Just copy and paste the following in your GitHub action:
```yml ```yml
- name: Run sccache-cache only on non-release runs - name: Run sccache-cache only on non-release runs
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch' if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
uses: mozilla-actions/sccache-action@v0.0.10 uses: mozilla-actions/sccache-action@v0.0.11
- name: Set Rust caching env vars only on non-release runs - name: Set Rust caching env vars only on non-release runs
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch' if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
run: | run: |
@@ -34,13 +34,13 @@ Just copy and paste the following in your GitHub action:
### Specify a given version of sccache ### Specify a given version of sccache
Versions prior to sccache v0.10.0 probably will not work. Versions prior to sccache v0.11.0 probably will not work.
```yml ```yml
- name: Run sccache-cache - name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.10 uses: mozilla-actions/sccache-action@v0.0.11
with: with:
version: "v0.10.0" version: "v0.16.0"
``` ```
### To get the execution stats ### To get the execution stats
@@ -103,7 +103,7 @@ When using the action on GitHub Enterprise Server installations a valid GitHub.c
```yml ```yml
- name: Run sccache-cache - name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.10 uses: mozilla-actions/sccache-action@v0.0.11
with: with:
token: ${{ secrets.MY_GITHUB_TOKEN }} token: ${{ secrets.MY_GITHUB_TOKEN }}
``` ```