2.8.2
Some checks failed
buildjet / Test buildjet provider on ubuntu-latest (push) Has been skipped
coverage / Test `cargo-llvm-cov` on ubuntu-latest (push) Has been skipped
git-registry / Test cargo "git" registry on ubuntu-latest (push) Has been skipped
install / Test `cargo install` on ubuntu-latest (push) Has been skipped
multi-job-cache / Test multi-job cache (1) on ubuntu-latest (push) Has been skipped
multi-job-cache / Test multi-job cache (2) on ubuntu-latest (push) Has been skipped
simple / Test `cargo check/test/build` on ubuntu-latest (push) Has been skipped
target-dir / Test custom target-dir on ubuntu-latest (push) Has been skipped
workspaces / Test multiple workspaces on ubuntu-latest (push) Has been skipped
buildjet / Test buildjet provider on macos-latest (push) Has been cancelled
buildjet / Test buildjet provider on windows-latest (push) Has been cancelled
coverage / Test `cargo-llvm-cov` on macos-latest (push) Has been cancelled
coverage / Test `cargo-llvm-cov` on windows-latest (push) Has been cancelled
git-registry / Test cargo "git" registry on macos-latest (push) Has been cancelled
git-registry / Test cargo "git" registry on windows-latest (push) Has been cancelled
install / Test `cargo install` on macos-latest (push) Has been cancelled
install / Test `cargo install` on windows-latest (push) Has been cancelled
multi-job-cache / Test multi-job cache (1) on macos-latest (push) Has been cancelled
multi-job-cache / Test multi-job cache (1) on windows-latest (push) Has been cancelled
multi-job-cache / Test multi-job cache (2) on macos-latest (push) Has been cancelled
multi-job-cache / Test multi-job cache (2) on windows-latest (push) Has been cancelled
simple / Test `cargo check/test/build` on macos-latest (push) Has been cancelled
simple / Test `cargo check/test/build` on windows-latest (push) Has been cancelled
target-dir / Test custom target-dir on macos-latest (push) Has been cancelled
target-dir / Test custom target-dir on windows-latest (push) Has been cancelled
workspaces / Test multiple workspaces on macos-latest (push) Has been cancelled
workspaces / Test multiple workspaces on windows-latest (push) Has been cancelled

This commit is contained in:
Arpad Borsos
2025-11-26 11:14:39 +01:00
parent 2ea64efb25
commit 779680da71
5 changed files with 4226 additions and 137 deletions

View File

@@ -1,5 +1,9 @@
# Changelog # Changelog
## 2.8.2
- Don't overwrite env for cargo-metadata call
## 2.8.1 ## 2.8.1
- Set empty `CARGO_ENCODED_RUSTFLAGS` when retrieving metadata - Set empty `CARGO_ENCODED_RUSTFLAGS` when retrieving metadata

2176
dist/restore/index.js vendored

File diff suppressed because it is too large Load Diff

2176
dist/save/index.js vendored

File diff suppressed because it is too large Load Diff

5
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "rust-cache", "name": "rust-cache",
"version": "2.8.1", "version": "2.8.2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "rust-cache", "name": "rust-cache",
"version": "2.8.1", "version": "2.8.2",
"license": "LGPL-3.0", "license": "LGPL-3.0",
"dependencies": { "dependencies": {
"@actions/buildjet-cache": "npm:github-actions.cache-buildjet@0.2.0", "@actions/buildjet-cache": "npm:github-actions.cache-buildjet@0.2.0",
@@ -602,6 +602,7 @@
"version": "5.2.2", "version": "5.2.2",
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.2.2.tgz", "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.2.2.tgz",
"integrity": "sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg==", "integrity": "sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg==",
"peer": true,
"dependencies": { "dependencies": {
"@octokit/auth-token": "^4.0.0", "@octokit/auth-token": "^4.0.0",
"@octokit/graphql": "^7.1.0", "@octokit/graphql": "^7.1.0",

View File

@@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "rust-cache", "name": "rust-cache",
"version": "2.8.1", "version": "2.8.2",
"description": "A GitHub Action that implements smart caching for rust/cargo projects with sensible defaults.", "description": "A GitHub Action that implements smart caching for rust/cargo projects with sensible defaults.",
"keywords": [ "keywords": [
"actions", "actions",