Skip to content

Releases: oxc-project/setup-rust

v.1.0.16

11 Mar 02:11
Immutable release. Only release title and notes can be modified.
23f38cf

Choose a tag to compare

chore(deps): update taiki-e/install-action action to v2.68.22 (#41)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

v1.0.15

08 Mar 12:56
Immutable release. Only release title and notes can be modified.
4f86b5d

Choose a tag to compare

fix: use cache-directories instead of workspaces for absolute target-dir

rust-cache's `workspaces` input uses `path.join(root, target)` which
on Windows concatenates the workspace root with an absolute path on a
different drive, producing invalid paths like `D:\a\repo\E:\target`.

Instead of passing target-dir via workspaces:
- Set `cache-targets: false` when target-dir is set (no ./target exists)
- Set `cache-directories` to the target dir (adds paths directly without path.join)
- Revert to upstream Swatinem/rust-cache (no fork needed)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

v1.0.14

08 Mar 06:44
Immutable release. Only release title and notes can be modified.
b21cce7

Choose a tag to compare

feat: add `target-dir` input for custom cargo target directory (#39)

Adds support for redirecting compilation artifacts to a custom directory
(e.g., a Dev Drive on Windows) by setting `CARGO_TARGET_DIR` and
configuring rust-cache's `workspaces` accordingly to avoid cache misses.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

v1.0.13

24 Feb 04:17
Immutable release. Only release title and notes can be modified.
704e164

Choose a tag to compare

chore(deps): update taiki-e/install-action action to v2.68.5 (#37)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

v1.0.12

21 Dec 05:10
Immutable release. Only release title and notes can be modified.
c822415

Choose a tag to compare

chore(deps): update taiki-e/install-action action to v2.64.0 (#35)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

v1.0.11

25 Nov 05:04
Immutable release. Only release title and notes can be modified.
ecabb73

Choose a tag to compare

chore(deps): update taiki-e/install-action action to v2.62.55 (#31)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

v1.0.10

22 Nov 08:15
Immutable release. Only release title and notes can be modified.
eb5c2bf

Choose a tag to compare

chore(deps): update taiki-e/install-action action to v2.62.54 (#30)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

v1.0.9

10 Nov 07:41
Immutable release. Only release title and notes can be modified.
83350c0

Choose a tag to compare

What's Changed

  • chore(deps): update taiki-e/install-action action to v2.62.47 by @renovate[bot] in #26

Full Changelog: v1.0.8...v1.0.9

v1.0.8

02 Nov 05:35
Immutable release. Only release title and notes can be modified.
f03aedf

Choose a tag to compare

What's Changed

  • chore(deps): update taiki-e/install-action action to v2.62.16 by @renovate[bot] in #22
  • chore(deps): update taiki-e/install-action action to v2.62.33 by @renovate[bot] in #23
  • chore(deps): update taiki-e/install-action action to v2.62.37 by @renovate[bot] in #24
  • chore(deps): update taiki-e/install-action action to v2.62.41 by @renovate[bot] in #25

Full Changelog: v1.0.7...v1.0.8

v1.0.7

05 Oct 15:53
Immutable release. Only release title and notes can be modified.
1ff88fd

Choose a tag to compare

Only save Valgrind cache on main branch

Split the Valgrind cache step into two separate steps:
- Save and restore on main branch
- Restore only on PR branches

This prevents cache pollution from PR branches while still allowing PRs to benefit from the cached Valgrind installation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>