Skip to content

Commit 8b28aa3

Browse files
committed
chore: fix remaining warnings for all targets
1 parent 222dae8 commit 8b28aa3

File tree

31 files changed

+393
-111
lines changed

31 files changed

+393
-111
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
github_token: ${{ secrets.GITHUB_TOKEN}}
189189

190190
- name: Build & Push (rivetkit/engine:full)
191-
uses: docker/build-push-action@v4
191+
uses: depot/build-push-action@v1
192192
with:
193193
context: .
194194
push: true
@@ -205,7 +205,7 @@ jobs:
205205
# netrc=${{ runner.temp }}/netrc
206206

207207
- name: Build & Push (rivetkit/engine:slim)
208-
uses: docker/build-push-action@v4
208+
uses: depot/build-push-action@v1
209209
with:
210210
context: .
211211
push: true

.github/workflows/rust.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,17 @@ jobs:
4646
# runs-on: depot-ubuntu-24.04
4747
# steps:
4848
# - uses: actions/checkout@v4
49-
49+
5050
# - uses: actions-rust-lang/setup-rust-toolchain@v1
5151
# with:
5252
# toolchain: stable
5353
# components: clippy
54-
54+
5555
# - uses: Swatinem/rust-cache@v2
56-
56+
# with:
57+
# shared-key: "rust-ci"
58+
# cache-on-failure: true
59+
5760
# - name: Run clippy
5861
# run: cargo clippy --all-targets --all-features -- -W warnings
5962

@@ -68,6 +71,9 @@ jobs:
6871
toolchain: stable
6972

7073
- uses: Swatinem/rust-cache@v2
74+
with:
75+
shared-key: "rust-ci"
76+
cache-on-failure: true
7177

7278
- name: Check
7379
run: cargo check --all-targets --all-features
@@ -86,6 +92,12 @@ jobs:
8692
# toolchain: stable
8793
#
8894
# - uses: Swatinem/rust-cache@v2
95+
# with:
96+
# # Share cache across all Rust jobs
97+
# shared-key: "rust-ci"
98+
# # Save cache even if the build fails
99+
# cache-on-failure: true
100+
# # Only save cache on main branch to avoid cache pollution from PRs
89101
#
90102
# - name: Run tests
91103
# run: cargo test --verbose

0 commit comments

Comments
 (0)