From 4c8c5b52423466a6557f2ceaecaff1505341fead Mon Sep 17 00:00:00 2001 From: "Heinz N. Gies" Date: Wed, 10 Apr 2024 11:46:24 +0200 Subject: [PATCH] get rid of toolchain action Signed-off-by: Heinz N. Gies --- .github/workflows/checks.yaml | 10 ---------- .github/workflows/security.yaml | 3 --- .github/workflows/tests.yaml | 8 +++----- 3 files changed, 3 insertions(+), 18 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 024a49c..fec903a 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -29,11 +29,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - uses: actions-rs/toolchain@v1 - with: - override: true - profile: minimal - components: rustfmt - name: Check Formating run: cargo fmt --all -- --check clippy-check: @@ -42,11 +37,6 @@ jobs: - uses: actions/checkout@v1 - name: Install deps run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1 - - uses: actions-rs/toolchain@v1 - with: - override: true - profile: minimal - components: clippy - uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/security.yaml b/.github/workflows/security.yaml index b5e8b45..19ef734 100644 --- a/.github/workflows/security.yaml +++ b/.github/workflows/security.yaml @@ -7,9 +7,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - uses: actions-rs/toolchain@v1 - with: - override: true - uses: actions-rs/audit-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index ad71066..6dcac90 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -16,10 +16,8 @@ jobs: - uses: actions/checkout@v1 - name: Install deps [Linux] run: sudo apt-get -qy update && sudo apt-get install -y libssl-dev libssl1.1 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - components: llvm-tools-preview + - name: Install llvm-tools-preview + run: rustup component add llvm-tools-preview - uses: Swatinem/rust-cache@v1 - name: Install cargo-llvm-cov uses: taiki-e/install-action@cargo-llvm-cov @@ -32,4 +30,4 @@ jobs: - uses: codecov/codecov-action@v3 with: flags: ${{ matrix.features.name }} - files: ./lcov.txt \ No newline at end of file + files: ./lcov.txt