diff --git a/README.md b/README.md index 7858264..4126fe8 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.6 + uses: mozilla-actions/sccache-action@v0.0.7 ``` ### 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.6 + uses: mozilla-actions/sccache-action@v0.0.7 - 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.6 + uses: mozilla-actions/sccache-action@v0.0.7 with: version: "v0.7.4" ``` @@ -101,7 +101,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.6 + uses: mozilla-actions/sccache-action@v0.0.7 with: token: ${{ secrets.MY_GITHUB_TOKEN }} ``` diff --git a/package-lock.json b/package-lock.json index 9cc1e58..9748e16 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sccache-action", - "version": "0.0.6", + "version": "0.0.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "sccache-action", - "version": "0.0.6", + "version": "0.0.7", "license": "Apache-2.0", "dependencies": { "@actions/core": "^1.11.1", @@ -2551,9 +2551,9 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "dependencies": { "path-key": "^3.1.0", @@ -5108,12 +5108,12 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { diff --git a/package.json b/package.json index e62f1ab..b596b8b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sccache-action", - "version": "0.0.6", + "version": "0.0.7", "description": "Github Action for Sccache", "main": "dist/setup/index.js", "engines": {