Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,14 @@ jobs:

# BuildKit enables advanced cache backends (required for GHA cache below)
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

# Build Docker image with GHA cache to avoid recompiling Rust dependencies.
# cache-from pulls cached layers, cache-to pushes them back (mode=max caches
# intermediate layers too, so the dependency layer from our split Dockerfile
# is preserved across runs).
- name: Build Docker image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
load: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-deps-cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
private-key: ${{ secrets.HOUSEKEEPING_BOT_PRIVATE_KEY }}

- name: Update Cargo Dependencies
uses: alchemaxinc/update-deps/cargo@v1
uses: alchemaxinc/update-deps/cargo@v2
with:
token: ${{ steps.app.outputs.token }}
auto-merge: "true"
Expand Down