File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,10 @@ jobs:
15
15
runs-on : ${{ matrix.os }}
16
16
17
17
steps :
18
- - uses : actions/checkout@v3
18
+ - uses : actions/checkout@v4
19
19
20
20
- name : Install Rust
21
- uses : actions-rs/toolchain@v1
22
- with :
23
- toolchain : stable
24
- override : true
21
+ uses : dtolnay/rust-toolchain@stable
25
22
26
23
- name : Build
27
24
run : cargo build --release --features ${{ matrix.feature }}
39
36
cp target/release/libtiktoken_core.$EXT artifacts/tiktoken_core-$OS-${{ matrix.feature }}.$EXT
40
37
41
38
- name : Upload artifact
42
- uses : actions/upload-artifact@v3
39
+ uses : actions/upload-artifact@v4
43
40
with :
44
41
name : tiktoken_core-${{ matrix.os }}-${{ matrix.feature }}
45
42
path : artifacts/tiktoken_core-*.${{ matrix.os == 'ubuntu-latest' && 'so' || 'dylib' }}
You can’t perform that action at this time.
0 commit comments