@@ -12,15 +12,15 @@ jobs:
1212 style :
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v3
15+ - uses : actions/checkout@v4
1616
17- - uses : dprint/check@v2.2
17+ - uses : dprint/check@v2.3
1818` ` `
1919
2020If you are using a matrix, most likely you will only want to run it only on Linux. For example:
2121
2222` ` ` yml
23- - uses : dprint/check@v2.2
23+ - uses : dprint/check@v2.3
2424 if : runner.os == 'Linux'
2525` ` `
2626
@@ -33,7 +33,7 @@ By default, `dprint/check` uses the latest version of dprint.
3333To use a specific version, specify that with the `dprint-version` input :
3434
3535` ` ` yml
36- - uses: dprint/check@v2.2
36+ - uses: dprint/check@v2.3
3737 with:
3838 dprint-version: 0.30.3
3939` ` `
@@ -47,7 +47,7 @@ By default, `dprint/check` uses the auto-discovered configuration file.
4747To use a specific config, specify that with the `config-path` input :
4848
4949` ` ` yml
50- - uses: dprint/check@v2.2
50+ - uses: dprint/check@v2.3
5151 with:
5252 config-path: dprint-ci.json
5353` ` `
@@ -60,7 +60,7 @@ To pass additional arguments to `dprint check`, pass them to the `args` input. E
6060- name: Get changed files
6161 id: changed-files
6262 uses: tj-actions/changed-files@v45
63- - uses: dprint/check@v2.2
63+ - uses: dprint/check@v2.3
6464 with:
6565 args: >-
6666 --allow-no-files
@@ -89,5 +89,5 @@ You can fix this by only running the action on Linux as shown above (recommended
8989 git config --global core.autocrlf false
9090 git config --global core.eol lf
9191
92- - uses: actions/checkout@v3
92+ - uses: actions/checkout@v4
9393` ` `
0 commit comments