From 62fcf4c54296ba633d9efd9ef5cbaf5abc3f3566 Mon Sep 17 00:00:00 2001 From: TornaxO7 Date: Mon, 23 Dec 2024 02:21:40 +0100 Subject: [PATCH] ci: update actions tag --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00b946f..547e49c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: TornaxO7/rust-template@v1-ci-actions + - uses: TornaxO7/rust-template@v2-ci-actions - name: Check formatting if: github.event.pull_request.head.repo.full_name != github.repository run: cargo fmt --check --verbose @@ -46,7 +46,7 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: TornaxO7/rust-template@v1-ci-actions + - uses: TornaxO7/rust-template@v2-ci-actions - name: Check for build errors run: cargo check --verbose @@ -54,7 +54,7 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: TornaxO7/rust-template@v1-ci-actions + - uses: TornaxO7/rust-template@v2-ci-actions - name: Check best practices (Clippy) run: cargo clippy --verbose -- -Dwarnings @@ -62,6 +62,6 @@ jobs: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: - - uses: TornaxO7/rust-template@v1-ci-actions + - uses: TornaxO7/rust-template@v2-ci-actions - name: Running tests run: cargo test --verbose