From 2941fbfa4a660998831195957822c6cd42eef87a Mon Sep 17 00:00:00 2001 From: Jonas Bushart Date: Tue, 31 Jan 2023 13:10:41 +0100 Subject: [PATCH] Use the correct variable to enable sparse registry access --- CHANGELOG.md | 7 +++++++ action.yml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0dad58..586e911 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.3.6] - 2023-01-31 + +### Fixed + +* The the correct environment variable to enable the sparse registry access. + The pull request originally had the wrong value, without `CARGO_` prefix. + ## [1.3.5] - 2023-01-21 ### Changed diff --git a/action.yml b/action.yml index 45b5ee5..10aa37e 100644 --- a/action.yml +++ b/action.yml @@ -67,7 +67,7 @@ runs: echo "CARGO_UNSTABLE_SPARSE_REGISTRY=true" >> $GITHUB_ENV # Enable sparse index after stabilization # https://github.com/rust-lang/cargo/pull/11224 - echo "REGISTRIES_CRATES_IO_PROTOCOL=sparse" >> $GITHUB_ENV + echo "CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse" >> $GITHUB_ENV shell: bash - name: "Install Rust Problem Matcher" run: echo "::add-matcher::${{ github.action_path }}/rust.json"