diff --git a/README.md b/README.md index aa6666c..99593c8 100644 --- a/README.md +++ b/README.md @@ -228,7 +228,7 @@ See [issue #17](https://github.com/fontist/setup-fontist/issues/17) for more det # Development -This action is built with [Bun](https://bun.sh/) but runs on Node.js 20. +This action is built with [Bun](https://bun.sh/) but runs on Node.js 24. ```bash # Install dependencies @@ -246,7 +246,7 @@ bun run format **Testing:** Tests are run via GitHub Actions. Open a PR to trigger test runs across ubuntu-latest and macos-latest runners. -Note: Since [Bun doesn't support Windows yet](https://github.com/oven-sh/bun/issues/43), we can't run `bun build` on Windows runners. However, the action still works on Windows since Bun is only used for the build step; it runs using Node.js via `using: node20`. +Note: Since [Bun doesn't support Windows yet](https://github.com/oven-sh/bun/issues/43), we can't run `bun build` on Windows runners. However, the action still works on Windows since Bun is only used for the build step; it runs using Node.js via `using: node24`. # License diff --git a/action.yml b/action.yml index 25b85e4..ad4dfea 100644 --- a/action.yml +++ b/action.yml @@ -38,6 +38,6 @@ outputs: value: ${{ steps.setup-fontist.outputs.cache-hit }} runs: - using: node20 + using: node24 main: dist/main.js post: dist/post.js