ci: update toolchain to 1.74 and fix draft action

This commit is contained in:
Byron Hambly 2024-05-27 10:19:03 +02:00
parent 623f314ecf
commit 904b2ad829
No known key found for this signature in database
GPG Key ID: DE8F6EA20A661697
6 changed files with 8 additions and 8 deletions

View File

@ -61,7 +61,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.70"
toolchain: "1.74"
targets: armv7-unknown-linux-gnueabihf
- name: Build ${{ matrix.target }} ${{ matrix.bin }} release binary

View File

@ -15,7 +15,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.70"
toolchain: "1.74"
components: clippy,rustfmt
- uses: Swatinem/rust-cache@v2.7.3
@ -100,7 +100,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.70"
toolchain: "1.74"
targets: armv7-unknown-linux-gnueabihf
- name: Build binary

View File

@ -42,8 +42,8 @@ jobs:
- name: Commit changelog and manifest files
id: make-commit
env:
DPRINT_VERSION: 0.39.1
RUST_TOOLCHAIN: 1.70
DPRINT_VERSION: "0.39.1"
RUST_TOOLCHAIN: "1.74"
run: |
rustup component add rustfmt --toolchain "$RUST_TOOLCHAIN-x86_64-unknown-linux-gnu"
curl -fsSL https://dprint.dev/install.sh | sh -s $DPRINT_VERSION

View File

@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
- Minimum Supported Rust Version (MSRV) bumped to 1.70
- Minimum Supported Rust Version (MSRV) bumped to 1.74
- Lowered default Bitcoin confirmation target for Bob to 1 to make sure Bitcoin transactions get confirmed in time
- Added support for starting the CLI (using the `start-daemon` subcommand) as a Daemon that accepts JSON-RPC requests
- Update monero-wallet-rpc version to v0.18.3.1

View File

@ -50,7 +50,7 @@ Please have a look at the [contribution guidelines](./CONTRIBUTING.md).
## Rust Version Support
Please note that only the latest stable Rust toolchain is supported.
All stable toolchains since 1.70 _should_ work.
All stable toolchains since 1.74 _should_ work.
## Contact

View File

@ -1,4 +1,4 @@
[toolchain]
channel = "1.70" # also update this in the readme, changelog, and github actions
channel = "1.74" # also update this in the readme, changelog, and github actions
components = ["clippy"]
targets = ["armv7-unknown-linux-gnueabihf"]