From 368590c3a2b5cd97030e277582d3469a9070163e Mon Sep 17 00:00:00 2001 From: phoenix Date: Sun, 22 Mar 2026 21:59:34 -0400 Subject: [PATCH] Updated rust version in workflow --- .gitea/workflows/tag_release.yaml | 4 ++-- .gitea/workflows/workflow.yaml | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/tag_release.yaml b/.gitea/workflows/tag_release.yaml index 1e59728..952ee7f 100644 --- a/.gitea/workflows/tag_release.yaml +++ b/.gitea/workflows/tag_release.yaml @@ -18,9 +18,9 @@ jobs: fetch-depth: 0 # Important for git describe --tags - name: Install Rust - uses: actions-rs/toolchain@v1 + - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.90.0 + toolchain: 1.94 components: cargo - name: Extract Version from Cargo.toml diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml index 68527ae..85ca80e 100644 --- a/.gitea/workflows/workflow.yaml +++ b/.gitea/workflows/workflow.yaml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.90.0 + toolchain: 1.94 - run: cargo check test: @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.90.0 + toolchain: 1.94 - run: cargo test fmt: @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.90.0 + toolchain: 1.94 - run: rustup component add rustfmt - run: cargo fmt --all -- --check @@ -47,7 +47,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.90.0 + toolchain: 1.94 - run: rustup component add clippy - run: cargo clippy -- -D warnings @@ -58,5 +58,5 @@ jobs: - uses: actions/checkout@v5 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.90.0 + toolchain: 1.94 - run: cargo build