Skip to content

Commit a771c64

Browse files
authored
fix: usage of node12 which is deprecated (#35)
* chore: changes from formatting on save * fix: usage of `node12 which is deprecated`
1 parent c8cd6f4 commit a771c64

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/lint.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919
- name: Select Rust toolchain with Clippy
2020
uses: actions-rs/toolchain@v1
2121
with:
2222
toolchain: stable
2323
components: clippy
2424
override: true
2525
- name: Use cache for Rust dependencies
26-
uses: Swatinem/rust-cache@v1
26+
uses: Swatinem/rust-cache@v2
2727
- name: Lint using Clippy
28-
run: cargo clippy
28+
run: cargo clippy

0 commit comments

Comments
 (0)