diff --git a/.gitea/workflows/tag_release.yaml b/.gitea/workflows/tag_release.yaml index d6bafa0..220e516 100644 --- a/.gitea/workflows/tag_release.yaml +++ b/.gitea/workflows/tag_release.yaml @@ -20,7 +20,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.94 + toolchain: 1.95 components: cargo - name: Extract Version from Cargo.toml diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml index 85ca80e..d82ba9a 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.94 + toolchain: 1.95 - run: cargo check test: @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.94 + toolchain: 1.95 - run: cargo test fmt: @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.94 + toolchain: 1.95 - 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.94 + toolchain: 1.95 - 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.94 + toolchain: 1.95 - run: cargo build