66 clippy :
77 runs-on : ubuntu-latest
88 steps :
9- - uses : actions/checkout@v2
9+ - uses : actions/checkout@v5
1010 - name : Clippy
1111 run : cargo clippy --all-features -- -D warnings
1212
1313 format :
1414 runs-on : ubuntu-latest
1515 steps :
16- - uses : actions/checkout@v2
16+ - uses : actions/checkout@v5
1717 - name : Format
1818 run : cargo fmt --all -- --check
1919
2020 tailwind-build :
2121 runs-on : ubuntu-latest
2222 steps :
23- - uses : actions/checkout@v2
23+ - uses : actions/checkout@v5
2424 - name : Install Node.js
25- uses : actions/setup-node@v1
25+ uses : actions/setup-node@v5
2626 with :
27- node-version : ' 14 '
27+ node-version : ' 24 '
2828 - name : Install Tailwind
29- run : npm install -D tailwindcss
29+ run : npm install -D tailwindcss @tailwindcss/cli
3030 - name : Install Dependencies
3131 run : npm install @tailwindcss/typography @tailwindcss/forms @tailwindcss/aspect-ratio
3232 - name : Build
33- run : npx tailwind -o styles/main.css
33+ run : npx @tailwindcss/cli -o styles/main.css
3434 - name : Upload Style Artifact
3535 uses : actions/upload-artifact@v4
3636 with :
@@ -40,15 +40,15 @@ jobs:
4040 build_and_test :
4141 runs-on : ubuntu-latest
4242 steps :
43- - uses : actions/checkout@v2
43+ - uses : actions/checkout@v5
4444 - name : Add wasm32 target
4545 run : rustup target add wasm32-unknown-unknown
4646 - name : Install Trunk
4747 run : cargo install --locked trunk
4848 - name : Clean
4949 run : cargo clean
5050 - name : Download Style Artifact
51- uses : actions/download-artifact@v4
51+ uses : actions/download-artifact@v5
5252 with :
5353 name : tailwind-style
5454 path : styles
0 commit comments