Skip to content

Commit aed5a8f

Browse files
committed
Merge #1910: build(deps): bump Swatinem/rust-cache from 2.7.7 to 2.7.8
883afee build(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: notmandatory: ACK 883afee Tree-SHA512: 5687a1e279223b8b923ae8fac9d221b37d343a273c688743794c646971fd4aec9022d1a7379c8708159b8df03bfca5b16b1dc4ae5847836279d2c403a062fa71
2 parents 4fe121e + 883afee commit aed5a8f

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
@@ -43,7 +43,7 @@ jobs:
4343
override: true
4444
profile: minimal
4545
- name: Rust Cache
46-
uses: Swatinem/[email protected].7
46+
uses: Swatinem/[email protected].8
4747
- name: Pin dependencies for 1.75
4848
if: matrix.rust.version == '1.75.0'
4949
run: |
@@ -84,7 +84,7 @@ jobs:
8484
profile: minimal
8585
# target: "thumbv6m-none-eabi"
8686
- name: Rust Cache
87-
uses: Swatinem/[email protected].7
87+
uses: Swatinem/[email protected].8
8888
- name: Check bdk_chain
8989
working-directory: ./crates/chain
9090
# TODO "--target thumbv6m-none-eabi" should work but currently does not
@@ -118,7 +118,7 @@ jobs:
118118
profile: minimal
119119
target: "wasm32-unknown-unknown"
120120
- name: Rust Cache
121-
uses: Swatinem/[email protected].7
121+
uses: Swatinem/[email protected].8
122122
- name: Check esplora
123123
working-directory: ./crates/esplora
124124
run: cargo check --target wasm32-unknown-unknown --no-default-features --features bdk_core/hashbrown,async
@@ -158,7 +158,7 @@ jobs:
158158
components: clippy
159159
override: true
160160
- name: Rust Cache
161-
uses: Swatinem/[email protected].7
161+
uses: Swatinem/[email protected].8
162162
- uses: actions-rs/clippy-check@v1
163163
with:
164164
token: ${{ secrets.GITHUB_TOKEN }}
@@ -188,7 +188,7 @@ jobs:
188188
override: true
189189
profile: minimal
190190
- name: Rust Cache
191-
uses: Swatinem/[email protected].7
191+
uses: Swatinem/[email protected].8
192192
- name: Build
193193
working-directory: examples/${{ matrix.example-dir }}
194194
run: cargo build

0 commit comments

Comments
 (0)