Skip to content

Commit d1b7dc2

Browse files
committed
Auto merge of #3801 - rust-lang:renovate/actions-cache-2.x, r=Turbo87
Update actions/cache action to v2.1.6 [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://togithub.com/actions/cache) | action | patch | `v2.1.4` -> `v2.1.6` | --- ### Release Notes <details> <summary>actions/cache</summary> ### [`v2.1.6`](https://togithub.com/actions/cache/releases/v2.1.6) [Compare Source](https://togithub.com/actions/cache/compare/v2.1.5...v2.1.6) - Catch unhandled "bad file descriptor" errors that sometimes occurs when the cache server returns non-successful response (actions/cache#596) ### [`v2.1.5`](https://togithub.com/actions/cache/releases/v2.1.5) [Compare Source](https://togithub.com/actions/cache/compare/v2.1.4...v2.1.5) - Fix permissions error seen when extracting caches with GNU tar that were previously created using BSD tar (actions/cache#527) </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/rust-lang/crates.io).
2 parents 86ded9d + 429c1ac commit d1b7dc2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777

7878
# Current size as of 2021-02-15: ~105 MB
7979
- name: Cache cargo registry and git deps
80-
uses: actions/cache@v2.1.4
80+
uses: actions/cache@v2.1.6
8181
with:
8282
path: |
8383
~/.cargo/registry/cache
@@ -92,7 +92,7 @@ jobs:
9292
echo "::set-output name=version::$(rustc -V)"
9393

9494
- name: Cache cargo build
95-
uses: actions/cache@v2.1.4
95+
uses: actions/cache@v2.1.6
9696
with:
9797
path: target
9898
key: v2-${{ runner.os }}-cargo-clippy-${{ steps.rustc.outputs.version }}-${{ hashFiles('**/Cargo.lock') }}
@@ -167,14 +167,14 @@ jobs:
167167
#
168168
# Current size as of 2021-02-15: ~15 MB
169169
- name: Cache cargo binaries
170-
uses: actions/cache@v2.1.4
170+
uses: actions/cache@v2.1.6
171171
with:
172172
path: ~/.cargo/bin
173173
key: ${{ runner.os }}-cargo-bin-${{ matrix.rust }}-${{ hashFiles('.diesel_version') }}-v3
174174

175175
# Current size as of 2021-02-15: ~105 MB
176176
- name: Cache cargo registry and git deps
177-
uses: actions/cache@v2.1.4
177+
uses: actions/cache@v2.1.6
178178
with:
179179
path: |
180180
~/.cargo/registry/cache
@@ -200,7 +200,7 @@ jobs:
200200

201201
# Current size as of 2021-02-12: ~325 MB
202202
- name: Cache cargo build
203-
uses: actions/cache@v2.1.4
203+
uses: actions/cache@v2.1.6
204204
with:
205205
path: target
206206
key: v2-${{ runner.os }}-cargo-build-target-${{ steps.rustc.outputs.version }}-${{ hashFiles('**/Cargo.lock') }}

0 commit comments

Comments
 (0)