Skip to content

Commit ea94f37

Browse files
committed
Merge #1: chore(deps): bump Swatinem/rust-cache from 2.7.7 to 2.7.8
4553137 chore(deps): bump Swatinem/rust-cache from 2.7.7 to 2.7.8 (dependabot[bot]) Pull request description: Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 2.7.7 to 2.7.8. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/swatinem/rust-cache/releases">Swatinem/rust-cache's releases</a>.</em></p> <blockquote> <h2>v2.7.8</h2> <h2>What's Changed</h2> <ul> <li>Include CPU arch in the cache key for arm64 Linux runners by <a href="https://github.com/rhysd"><code>@rhysd</code></a> in <a href="https://redirect.github.com/Swatinem/rust-cache/pull/228">Swatinem/rust-cache#228</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/Swatinem/rust-cache/compare/v2.7.7...v2.7.8">https://github.com/Swatinem/rust-cache/compare/v2.7.7...v2.7.8</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md">Swatinem/rust-cache's changelog</a>.</em></p> <blockquote> <h2>2.7.8</h2> <ul> <li>Include CPU arch in the cache key</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Swatinem/rust-cache/commit/9d47c6ad4b02e050fd481d890b2ea34778fd09d6"><code>9d47c6a</code></a> 2.7.8</li> <li><a href="https://github.com/Swatinem/rust-cache/commit/27b8ea9368cf428f0bfe41b0876b1a7e809d9844"><code>27b8ea9</code></a> Include CPU arch in the cache key (<a href="https://redirect.github.com/swatinem/rust-cache/issues/228">#228</a>)</li> <li>See full diff in <a href="https://github.com/swatinem/rust-cache/compare/v2.7.7...v2.7.8">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Swatinem/rust-cache&package-manager=github_actions&previous-version=2.7.7&new-version=2.7.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> ACKs for top commit: luisschwab: ACK 4553137 ValuedMammal: ACK 4553137 Tree-SHA512: ea19e1b802b0f37e6c0ec4bc833883bce80e46d570585aa78f9137fb660139a6d711d0a866d784bf7076d306ed4a707ca4d31271e6c0b0683da84e9c317ab2f0
2 parents 7cdc985 + 4553137 commit ea94f37

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/code_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
profile: minimal
2727
components: llvm-tools-preview
2828
- name: Rust Cache
29-
uses: Swatinem/[email protected].7
29+
uses: Swatinem/[email protected].8
3030
- name: Install grcov
3131
run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi
3232
- name: Test

.github/workflows/cont_integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
override: true
4343
profile: minimal
4444
- name: Rust Cache
45-
uses: Swatinem/[email protected].7
45+
uses: Swatinem/[email protected].8
4646
- name: Pin dependencies for MSRV
4747
if: matrix.rust.version == '1.63.0'
4848
run: ./ci/pin-msrv.sh
@@ -70,7 +70,7 @@ jobs:
7070
profile: minimal
7171
# target: "thumbv6m-none-eabi"
7272
- name: Rust Cache
73-
uses: Swatinem/[email protected].7
73+
uses: Swatinem/[email protected].8
7474
- name: Check bdk wallet
7575
working-directory: ./wallet
7676
# TODO "--target thumbv6m-none-eabi" should work but currently does not
@@ -100,7 +100,7 @@ jobs:
100100
profile: minimal
101101
target: "wasm32-unknown-unknown"
102102
- name: Rust Cache
103-
uses: Swatinem/[email protected].7
103+
uses: Swatinem/[email protected].8
104104
- name: Check bdk wallet
105105
working-directory: ./wallet
106106
run: cargo check --target wasm32-unknown-unknown --no-default-features --features miniscript/no-std,bdk_chain/hashbrown
@@ -140,7 +140,7 @@ jobs:
140140
components: clippy
141141
override: true
142142
- name: Rust Cache
143-
uses: Swatinem/[email protected].7
143+
uses: Swatinem/[email protected].8
144144
- uses: actions-rs/clippy-check@v1
145145
with:
146146
token: ${{ secrets.GITHUB_TOKEN }}
@@ -170,7 +170,7 @@ jobs:
170170
override: true
171171
profile: minimal
172172
- name: Rust Cache
173-
uses: Swatinem/[email protected].7
173+
uses: Swatinem/[email protected].8
174174
- name: Build
175175
working-directory: examples/${{ matrix.example-dir }}
176176
run: cargo build

0 commit comments

Comments
 (0)