Skip to content

Commit 3915c8b

Browse files
authored
Merge pull request #144 from tnull/2023-07-pin-tempfile-to-fix-ci
Pin `tempfile` in CI to fix MSRV build
2 parents 6c1e783 + 769dd37 commit 3915c8b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
profile: minimal
3030
- name: Pin packages to allow for MSRV
3131
if: matrix.msrv
32-
run: cargo update -p hashlink --precise "0.8.1" --verbose # hashlink 0.8.2 requires hashbrown 0.13, requiring 1.61.0
32+
run: |
33+
cargo update -p hashlink --precise "0.8.1" --verbose # hashlink 0.8.2 requires hashbrown 0.13, requiring 1.61.0
34+
cargo update -p tempfile --precise "3.6.0" --verbose # tempfile 3.7.0 requires rustc 1.63.0
3335
- name: Build on Rust ${{ matrix.toolchain }}
3436
run: cargo build --verbose --color always
3537
- name: Build with UniFFI support on Rust ${{ matrix.toolchain }}

0 commit comments

Comments
 (0)