Skip to content

Commit

Permalink
Bumped version number in templates
Browse files Browse the repository at this point in the history
  • Loading branch information
creyD authored Feb 19, 2023
1 parent 6fe86ce commit 4ccf35e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
ref: ${{ github.head_ref }}

- name: Prettify code
uses: creyD/prettier_action@v4.2
uses: creyD/prettier_action@v4.3
with:
# This part is also where you can pass other options, for example:
prettier_options: --write **/*.{js,md}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
fetch-depth: 0

- name: Prettify code
uses: creyD/prettier_action@v4.2
uses: creyD/prettier_action@v4.3
with:
# This part is also where you can pass other options, for example:
prettier_options: --write **/*.{js,md}
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
persist-credentials: false

- name: Prettify code
uses: creyD/prettier_action@v4.2
uses: creyD/prettier_action@v4.3
with:
prettier_options: --write **/*.{js,md}
only_changed: True
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
persist-credentials: false

- name: Prettify code
uses: creyD/prettier_action@v4.2
uses: creyD/prettier_action@v4.3
with:
dry: True
github_token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
Expand All @@ -164,7 +164,7 @@ Please report all bugs and feature request using the [GitHub issues function](ht
### Problem with NPM v9 (19.02.2023)
This issue was discussed in https://github.com/creyD/prettier_action/issues/113. The action until release 4.2 uses the npm bin command, which apparently doesn't work on npm v9. A fix is introduced with v4.3 of this action. If you need an older version of the action working it works until v3.3 and between v3.3 and v4.2 you could use the workaround described in https://github.com/creyD/prettier_action/issues/113 by adding the below to your workflow file:
This issue was discussed in https://github.com/creyD/prettier_action/issues/113. The action until release 4 uses the npm bin command, which apparently doesn't work on npm v9. A fix is introduced with v4.3 of this action. If you need an older version of the action working it works until v3.3 and between v3.3 and v4.2 you could use the workaround described in https://github.com/creyD/prettier_action/issues/113 by adding the below to your workflow file:
```
- name: Install npm v8
Expand Down

0 comments on commit 4ccf35e

Please sign in to comment.