Skip to content

Commit 2941fbf

Browse files
authored
Use the correct variable to enable sparse registry access
1 parent bc88fd0 commit 2941fbf

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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.6] - 2023-01-31
11+
12+
### Fixed
13+
14+
* The the correct environment variable to enable the sparse registry access.
15+
The pull request originally had the wrong value, without `CARGO_` prefix.
16+
1017
## [1.3.5] - 2023-01-21
1118

1219
### Changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ runs:
6767
echo "CARGO_UNSTABLE_SPARSE_REGISTRY=true" >> $GITHUB_ENV
6868
# Enable sparse index after stabilization
6969
# https://github.com/rust-lang/cargo/pull/11224
70-
echo "REGISTRIES_CRATES_IO_PROTOCOL=sparse" >> $GITHUB_ENV
70+
echo "CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse" >> $GITHUB_ENV
7171
shell: bash
7272
- name: "Install Rust Problem Matcher"
7373
run: echo "::add-matcher::${{ github.action_path }}/rust.json"

0 commit comments

Comments
 (0)