From dccf425aaf4068ba07c2786c374977a1ee20c7bf Mon Sep 17 00:00:00 2001 From: core Date: Tue, 4 Mar 2025 21:04:17 -0500 Subject: [PATCH] fix ci workflow 6 --- .forgejo/workflows/check_latest_dependencies.yml | 1 + .forgejo/workflows/ci.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.forgejo/workflows/check_latest_dependencies.yml b/.forgejo/workflows/check_latest_dependencies.yml index 5859332..6b55e8e 100644 --- a/.forgejo/workflows/check_latest_dependencies.yml +++ b/.forgejo/workflows/check_latest_dependencies.yml @@ -19,6 +19,7 @@ jobs: CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow steps: - uses: actions/checkout@v4 + - run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh - run: rustup update stable && rustup default stable - run: cargo update --verbose - run: cargo build --verbose diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 93c580b..5ab4ba6 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -21,6 +21,7 @@ jobs: - nightly steps: - uses: actions/checkout@v4 + - run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: cargo build - run: cargo test