From 89c6ff2ee81f5d23b9b330fbd4fe027c5acc5613 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 16:14:22 +0000 Subject: [PATCH] chore(deps): bump astral-sh/ruff-action from 2 to 3 Bumps [astral-sh/ruff-action](https://github.com/astral-sh/ruff-action) from 2 to 3. - [Release notes](https://github.com/astral-sh/ruff-action/releases) - [Commits](https://github.com/astral-sh/ruff-action/compare/v2...v3) --- updated-dependencies: - dependency-name: astral-sh/ruff-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/continuous_integration.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 113c905d..6cc5eb38 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -26,17 +26,17 @@ jobs: run: uv run jupyter nbconvert --clear-output --inplace "main/COMO.ipynb" - name: Format Python Imports - uses: astral-sh/ruff-action@v2 + uses: astral-sh/ruff-action@v3 with: args: "check --fix --select I" - name: Format code - uses: astral-sh/ruff-action@v2 + uses: astral-sh/ruff-action@v3 with: args: "format" - name: Format Notebook - uses: astral-sh/ruff-action@v2 + uses: astral-sh/ruff-action@v3 with: args: "format main/COMO.ipynb" @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@v4 - name: Check Lint - uses: astral-sh/ruff-action@v2 + uses: astral-sh/ruff-action@v3 with: args: "check --no-fix --verbose"