Skip to content

Commit 8c2e173

Browse files
committed
fix: use correct rust-toolchain action name
1 parent 42e6d68 commit 8c2e173

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build-bindings.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v4
2222

2323
- name: Install Rust
24-
uses: dtolnay/rust-action@stable
24+
uses: dtolnay/rust-toolchain@stable
2525

2626
- name: Cache cargo
2727
uses: actions/cache@v4
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v4
5353

5454
- name: Install Rust
55-
uses: dtolnay/rust-action@stable
55+
uses: dtolnay/rust-toolchain@stable
5656
with:
5757
targets: aarch64-apple-darwin,x86_64-apple-darwin,aarch64-apple-ios,aarch64-apple-ios-sim,x86_64-apple-ios
5858

@@ -86,7 +86,7 @@ jobs:
8686
- uses: actions/checkout@v4
8787

8888
- name: Install Rust
89-
uses: dtolnay/rust-action@stable
89+
uses: dtolnay/rust-toolchain@stable
9090
with:
9191
targets: aarch64-linux-android,armv7-linux-androideabi,x86_64-linux-android,i686-linux-android
9292

@@ -129,7 +129,7 @@ jobs:
129129
- uses: actions/checkout@v4
130130

131131
- name: Install Rust
132-
uses: dtolnay/rust-action@stable
132+
uses: dtolnay/rust-toolchain@stable
133133

134134
- name: Cache cargo
135135
uses: actions/cache@v4
@@ -151,7 +151,7 @@ jobs:
151151
- name: Verify bindings generated
152152
run: |
153153
test -f bindings/swift/Sources/CooklangFind/cooklang_find.swift
154-
test -f bindings/kotlin/uniffi/cooklang_find/cooklang_find.kt
154+
test -f bindings/kotlin/org/cooklang/find/cooklang_find.kt
155155
156156
# Publish Swift package on release
157157
publish-swift:

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v4
2525

2626
- name: Install Rust ${{ matrix.rust }}
27-
uses: dtolnay/rust-action@stable
27+
uses: dtolnay/rust-toolchain@stable
2828
with:
2929
toolchain: ${{ matrix.rust }}
3030

@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v4
5353

5454
- name: Install Rust
55-
uses: dtolnay/rust-action@stable
55+
uses: dtolnay/rust-toolchain@stable
5656
with:
5757
components: rustfmt, clippy
5858

@@ -69,7 +69,7 @@ jobs:
6969
- uses: actions/checkout@v4
7070

7171
- name: Install Rust
72-
uses: dtolnay/rust-action@stable
72+
uses: dtolnay/rust-toolchain@stable
7373

7474
- name: Build documentation
7575
run: cargo doc --no-deps

0 commit comments

Comments
 (0)