Skip to content

Commit dbf13c1

Browse files
authored
fix: update dependencies (#423)
1 parent 963a69c commit dbf13c1

24 files changed

Lines changed: 723 additions & 571 deletions

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,25 @@ jobs:
2323
- uses: denoland/setup-deno@v1
2424
with:
2525
deno-version: ~1.x
26-
- uses: actions/setup-node@v2
26+
- uses: actions/setup-node@v4
2727
with:
28-
node-version: '18'
28+
node-version: '20'
2929
registry-url: 'https://registry.npmjs.org'
3030

3131
- name: Format
3232
run: |
3333
cargo fmt --all -- --check
3434
deno fmt --check
35-
- name: Lint
36-
run: |
37-
cargo clippy --all-targets --all-features --release
38-
deno lint
35+
- name: Lint (Cargo)
36+
run: cargo clippy --all-targets --all-features --release
3937

4038
- name: Build
4139
run: deno task build
40+
- name: Lint (Deno)
41+
run: deno lint
4242
- name: Test (Rust)
4343
run: cargo test --all-targets --all-features --release
4444
- name: Test (Deno)
4545
run: deno task test
4646
- name: Publish on tag
47-
run: deno run -A jsr:@david/publish-on-tag@0.1.3
47+
run: deno run -A jsr:@david/publish-on-tag@0.1.4

0 commit comments

Comments
 (0)