Merge pull request #262 from sylvestre/0.0.11

prepare the version 0.0.11
This commit is contained in:
Sylvestre Ledru
2026-07-29 13:15:43 +02:00
committed by GitHub
5 changed files with 20 additions and 19 deletions
+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 }}
``` ```
+3 -3
View File
File diff suppressed because one or more lines are too long
+2 -2
View File
File diff suppressed because one or more lines are too long
+7 -6
View File
@@ -1,12 +1,12 @@
{ {
"name": "sccache-action", "name": "sccache-action",
"version": "0.0.10", "version": "0.0.11",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "sccache-action", "name": "sccache-action",
"version": "0.0.10", "version": "0.0.11",
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"@actions/core": "^1.11.1", "@actions/core": "^1.11.1",
@@ -26,7 +26,7 @@
"eslint-plugin-prettier": "^5.5.4", "eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0", "jest": "^29.7.0",
"jest-circus": "^30.3.0", "jest-circus": "^30.3.0",
"prettier": "^3.5.3", "prettier": "^3.9.6",
"ts-jest": "^29.4.6", "ts-jest": "^29.4.6",
"typescript": "^5.8.2" "typescript": "^5.8.2"
}, },
@@ -7305,10 +7305,11 @@
} }
}, },
"node_modules/prettier": { "node_modules/prettier": {
"version": "3.5.3", "version": "3.9.6",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.6.tgz",
"integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", "integrity": "sha512-OpN0zzVdiaiAhxpuuj5efpIS4sY9j7bY6uR5mnj5yPzGkdkjNKSJeUThPb60Jw29QuAZgA4o+/iB49kFiaBX6g==",
"dev": true, "dev": true,
"license": "MIT",
"bin": { "bin": {
"prettier": "bin/prettier.cjs" "prettier": "bin/prettier.cjs"
}, },
+2 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "sccache-action", "name": "sccache-action",
"version": "0.0.10", "version": "0.0.11",
"description": "Github Action for Sccache", "description": "Github Action for Sccache",
"main": "dist/setup/index.js", "main": "dist/setup/index.js",
"engines": { "engines": {
@@ -45,7 +45,7 @@
"eslint-plugin-prettier": "^5.5.4", "eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0", "jest": "^29.7.0",
"jest-circus": "^30.3.0", "jest-circus": "^30.3.0",
"prettier": "^3.5.3", "prettier": "^3.9.6",
"ts-jest": "^29.4.6", "ts-jest": "^29.4.6",
"typescript": "^5.8.2" "typescript": "^5.8.2"
} }