From 98cc4a4345d334a65f25797ec1b4d3f7576c4063 Mon Sep 17 00:00:00 2001 From: Raphael Boidol Date: Fri, 24 Nov 2023 10:54:45 +0100 Subject: [PATCH] Switch to `RUFF_OUTPUT_FORMAT` `RUFF_FORMAT` was deprecated in favor of `RUFF_OUTPUT_FORMAT` in v0.0.291. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 20e8b90..4956cbc 100644 --- a/action.yml +++ b/action.yml @@ -29,7 +29,7 @@ runs: python3 $GITHUB_ACTION_PATH/action/main.py fi env: - RUFF_FORMAT: github + RUFF_OUTPUT_FORMAT: github INPUT_ARGS: ${{ inputs.args }} INPUT_SRC: ${{ inputs.src }} INPUT_VERSION: ${{ inputs.version }}