From db6e683802f79a5010c9bb80e9adb07c477e34c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 17:01:05 +0000 Subject: [PATCH] chore(deps): bump astral-sh/ruff-action from 1 to 2 Bumps [astral-sh/ruff-action](https://github.com/astral-sh/ruff-action) from 1 to 2. - [Release notes](https://github.com/astral-sh/ruff-action/releases) - [Commits](https://github.com/astral-sh/ruff-action/compare/v1...v2) --- 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 8109f213..869f587d 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@v1 + uses: astral-sh/ruff-action@v2 with: args: "check --fix --select I" - name: Format code - uses: astral-sh/ruff-action@v1 + uses: astral-sh/ruff-action@v2 with: args: "format" - name: Format Notebook - uses: astral-sh/ruff-action@v1 + uses: astral-sh/ruff-action@v2 with: args: "format main/COMO.ipynb" @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@v4 - name: Check Lint - uses: astral-sh/ruff-action@v1 + uses: astral-sh/ruff-action@v2 with: args: "check --no-fix --verbose"