Skip to content

Commit aea84e9

Browse files
authored
Merge pull request #6 from actions-rust-lang/jonasbb/issue5
2 parents dcf4d74 + 08010b7 commit aea84e9

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.3.1] - 2022-08-14
11+
12+
### Changed
13+
14+
* Use the sparse-registry on nightly for faster access to the crate registry on nightly.
15+
<https://internals.rust-lang.org/t/call-for-testing-cargo-sparse-registry/16862>
16+
1017
## [1.3.0] - 2022-07-30
1118

1219
### Added

action.yml

+3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ runs:
6262
echo "CARGO_TERM_COLOR=always" >> $GITHUB_ENV
6363
echo "RUST_BACKTRACE=short" >> $GITHUB_ENV
6464
echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
65+
# Enable faster sparse index on nightly
66+
# https://internals.rust-lang.org/t/call-for-testing-cargo-sparse-registry/16862
67+
echo "CARGO_UNSTABLE_SPARSE_REGISTRY=true" >> $GITHUB_ENV
6568
shell: bash
6669
- name: "Install Rust Problem Matcher"
6770
run: echo "::add-matcher::${{ github.action_path }}/rust.json"

0 commit comments

Comments
 (0)