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