File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 21
21
os : [ubuntu-latest]
22
22
rust : [nightly, beta, stable]
23
23
steps :
24
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v3
25
25
- name : Install Rust
26
26
run : rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
27
27
- run : rustup target add thumbv7m-none-eabi
@@ -47,31 +47,31 @@ jobs:
47
47
# Rust version in Cargo.toml and .clippy.toml.
48
48
rust : ['1.39']
49
49
steps :
50
- - uses : actions/checkout@v2
50
+ - uses : actions/checkout@v3
51
51
- name : Install Rust
52
52
run : rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
53
53
- run : cargo build
54
54
55
55
clippy :
56
56
runs-on : ubuntu-latest
57
57
steps :
58
- - uses : actions/checkout@v2
58
+ - uses : actions/checkout@v3
59
59
- name : Install Rust
60
60
run : rustup update stable
61
61
- run : cargo clippy --all-features
62
62
63
63
fmt :
64
64
runs-on : ubuntu-latest
65
65
steps :
66
- - uses : actions/checkout@v2
66
+ - uses : actions/checkout@v3
67
67
- name : Install Rust
68
68
run : rustup update stable
69
69
- run : cargo fmt --all -- --check
70
70
71
71
security_audit :
72
72
runs-on : ubuntu-latest
73
73
steps :
74
- - uses : actions/checkout@v2
74
+ - uses : actions/checkout@v3
75
75
- uses : actions-rs/audit-check@v1
76
76
with :
77
77
token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 14
14
if : github.repository_owner == 'smol-rs'
15
15
runs-on : ubuntu-latest
16
16
steps :
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v3
18
18
- name : Install Rust
19
19
run : rustup update stable
20
20
- run : cargo package
You can’t perform that action at this time.
0 commit comments