From 33f5b948b5f8786005615553df53c4c55c17cb65 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Fri, 7 Mar 2025 09:26:30 +0100 Subject: [PATCH] prepare version 0.0.8 --- README.md | 12 +++++++----- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index fec0883..0bc0d46 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.7 + uses: mozilla-actions/sccache-action@v0.0.8 ``` ### 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.7 + uses: mozilla-actions/sccache-action@v0.0.8 - name: Set Rust caching env vars only on non-release runs if: github.event_name != 'release' && github.event_name != 'workflow_dispatch' run: | @@ -34,11 +34,13 @@ Just copy and paste the following in your GitHub action: ### Specify a given version of sccache +Versions prior v0.10.0 probably will not work. + ``` - name: Run sccache-cache - uses: mozilla-actions/sccache-action@v0.0.7 + uses: mozilla-actions/sccache-action@v0.0.8 with: - version: "v0.7.4" + version: "v0.10.0" ``` ### To get the execution stats @@ -101,7 +103,7 @@ When using the action on GitHub Enterprise Server installations a valid GitHub.c ``` - name: Run sccache-cache - uses: mozilla-actions/sccache-action@v0.0.7 + uses: mozilla-actions/sccache-action@v0.0.8 with: token: ${{ secrets.MY_GITHUB_TOKEN }} ``` diff --git a/package-lock.json b/package-lock.json index 2600470..81b5512 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sccache-action", - "version": "0.0.7", + "version": "0.0.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "sccache-action", - "version": "0.0.7", + "version": "0.0.8", "license": "Apache-2.0", "dependencies": { "@actions/core": "^1.11.1", diff --git a/package.json b/package.json index 04145be..0c7a3e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sccache-action", - "version": "0.0.7", + "version": "0.0.8", "description": "Github Action for Sccache", "main": "dist/setup/index.js", "engines": {