diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5afef425..c0445cdc 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,12 +18,11 @@ jobs: steps: - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 - name: Check formatting with Prettier - uses: Nerixyz/actionsx-prettier@v3-adj - with: - # prettier CLI arguments. - args: --write . + run: | + npx prettier@3.8.1 --write . - name: Show diff run: git --no-pager diff --exit-code --color=never shell: bash diff --git a/BUILDING_ON_WINDOWS.md b/BUILDING_ON_WINDOWS.md index ff438edd..f3d453da 100644 --- a/BUILDING_ON_WINDOWS.md +++ b/BUILDING_ON_WINDOWS.md @@ -61,7 +61,6 @@ These dependencies are only required if you are not using a package manager Boost 1. First, download a boost installer appropriate for your version of Visual Studio. - - Visit the downloads list on [SourceForge](https://sourceforge.net/projects/boost/files/boost-binaries/). - Select the latest version from the list. - Download the `.exe` file appropriate to your Visual Studio installation version and system bitness (choose `-64` for 64-bit systems). diff --git a/CHANGELOG.md b/CHANGELOG.md index 5060aedc..3416e803 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -96,6 +96,7 @@ - Dev: Cleaned up `AccountController` connections. (#6735) - Dev: Send multipart body for HTTP `PUT` requests. (#6746) - Dev: Removed unused variables. (#6748) +- Dev: Updated prettier version to 3.8.1 and migrated away from using an unmaintained GH Action, instead relying on `npx`. (#6769) - Dev: Updated `miniaudio` to 0.11.24. (#6754) - Dev: Remove unused `reloadChannelAndSubscriberEmotes`. (#6756) - Dev: Moved `PluginMeta` to its own file. (#6757)