From 2f1cf31537886c3bfb05591c031f7744e48ba8a1 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 24 Jan 2023 17:45:38 -0500 Subject: [PATCH] v2.2 --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 32d866b..7d71504 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,13 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: dprint/check@v2.1 + - uses: dprint/check@v2.2 ``` If you are using a matrix, most likely you will only want to run it only on Linux. For example: ```yml -- uses: dprint/check@v2.1 +- uses: dprint/check@v2.2 if: runner.os == 'Linux' ``` @@ -33,21 +33,21 @@ By default, `dprint/check` uses the latest version of dprint. To use a specific version, specify that with the `dprint-version` input: ```yml -- uses: dprint/check@v2.1 +- uses: dprint/check@v2.2 with: dprint-version: 0.30.3 ``` ### Config Path -By default, `dprint/check` uses the `dprint.json`. +By default, `dprint/check` uses the auto-discovered configuration file. ### Specific Config To use a specific config, specify that with the `config-path` input: ```yml -- uses: dprint/check@v2.1 +- uses: dprint/check@v2.2 with: config-path: dprint-ci.json ```