1
0
mirror of https://github.com/mfontanini/presenterm.git synced 2026-09-01 23:33:21 -06:00

chore: update rust toolchain to 1.90

This commit is contained in:
Gregory Cavelier 2026-01-09 17:23:40 +01:00 committed by Gregory 'GaLi' Cavelier
parent f69899880a
commit a96b8cad4f
4 changed files with 5 additions and 6 deletions

View File

@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v4
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@1.86.0
uses: dtolnay/rust-toolchain@1.90.0
with:
components: clippy

View File

@ -64,7 +64,7 @@ jobs:
uses: houseabsolute/actions-rust-cross@a448c4b13769d56b63b035024fef8577e1d81915
with:
command: build
toolchain: 1.86.0
toolchain: 1.90.0
target: ${{ matrix.config.TARGET }}
args: "--locked --release"

View File

@ -25,7 +25,6 @@ jobs:
r="${r//$'\n'/'%0A'}"
r="${r//$'\r'/'%0D'}"
echo "notes=$r" >> "$GITHUB_OUTPUT"
publish-github:
name: Publish on GitHub
@ -60,7 +59,7 @@ jobs:
uses: houseabsolute/actions-rust-cross@a448c4b13769d56b63b035024fef8577e1d81915
with:
command: build
toolchain: 1.86.0
toolchain: 1.90.0
target: ${{ matrix.config.TARGET }}
args: "--locked --release"
@ -108,7 +107,7 @@ jobs:
uses: actions/checkout@v4
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@1.86.0
uses: dtolnay/rust-toolchain@1.90.0
- name: Publish
run: cargo publish --locked --token ${{ secrets.CARGO_TOKEN }}

View File

@ -10,7 +10,7 @@ docker run \
--rm \
-v "${root_dir}:/tmp/workspace" \
-w "/tmp/workspace" \
rust:1.86 \
rust:1.90 \
cargo run --features json-schema -q -- --generate-config-file-schema >"${current_schema}"
cp "$current_schema" "${root_dir}/config-file-schema.json"