Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump Swatinem/rust-cache from 2.7.5 to 2.7.7 #565

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
- run: df -h .

# Load cache before doing any Rust builds
- uses: Swatinem/rust-cache@v2.7.5
- uses: Swatinem/rust-cache@v2.7.7
with:
# This is not necessary for keying, but makes the GHA cache viewing page more helpful.
prefix-key: "v1-rust-${{ matrix.os }}-${{ matrix.toolchain }}-${{ matrix.depversions }}"
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:

- uses: actions/checkout@v4

- uses: Swatinem/rust-cache@v2.7.5
- uses: Swatinem/rust-cache@v2.7.7
with:
# Reuse the cache from the normal `build` job instead of creating an independent one,
# to reduce redundant work and save disk space — but don't *write* to that cache, so
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:

- run: df -h .

- uses: Swatinem/rust-cache@v2.7.5
- uses: Swatinem/rust-cache@v2.7.7
with:
# We cannot reuse the cache from the `build` job, because `RUSTFLAGS=-Dwarnings`
# would invalidate all cached artifacts anyway.
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:
sudo apt-get -y install libxrandr-dev xorg-dev libx11-xcb-dev libwayland-dev libasound2-dev libudev-dev

# Load cache before doing any Rust builds
- uses: Swatinem/rust-cache@v2.7.5
- uses: Swatinem/rust-cache@v2.7.7
with:
# Reuse the cache from the normal `build` job instead of creating an independent one,
# to reduce redundant work and save disk space — but don't *write* to that cache, so
Expand Down Expand Up @@ -428,7 +428,7 @@ jobs:
# Load cache before doing any Rust builds
# Note: we aren't depending on the build job so this cache might be stale, but the
# shorter time-to-useful-results seems worth it.
- uses: Swatinem/rust-cache@v2.7.5
- uses: Swatinem/rust-cache@v2.7.7
with:
# Reuse the cache from the normal `build` job instead of creating an independent one,
# to reduce redundant work and save disk space — but don't *write* to that cache, so
Expand Down Expand Up @@ -466,7 +466,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: Swatinem/rust-cache@v2.7.5
- uses: Swatinem/rust-cache@v2.7.7

- name: Install Rust toolchain
run: |
Expand All @@ -489,7 +489,7 @@ jobs:
- uses: actions/checkout@v4

# The build is faster *without* this cache.
# - uses: Swatinem/rust-cache@v2.7.5
# - uses: Swatinem/rust-cache@v2.7.7

- name: Install Rust toolchain
run: |
Expand Down Expand Up @@ -517,7 +517,7 @@ jobs:
- uses: actions/checkout@v4

# Cache both the main workspace (for xtask builds) and the fuzzing workspace
- uses: Swatinem/rust-cache@v2.7.5
- uses: Swatinem/rust-cache@v2.7.7
with:
workspaces: |
.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unstable-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
# libudev-dev: needed for gamepad input via `gilrs`

# Load cache before doing any Rust builds
- uses: Swatinem/rust-cache@v2.7.5
- uses: Swatinem/rust-cache@v2.7.7
with:
# This is not necessary for keying, but makes the GHA cache viewing page more helpful.
prefix-key: "v1-rust-unstablefeatures-${{ matrix.os }}-${{ matrix.depversions }}"
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: Swatinem/rust-cache@v2.7.5
- uses: Swatinem/rust-cache@v2.7.7
with:
# This is not necessary for keying, but makes the GHA cache viewing page more helpful.
prefix-key: "v1-rust-unstablefeatures-ubuntu-locked"
Expand Down
Loading