Commit 7068f33 1 parent 985e22b commit 7068f33 Copy full SHA for 7068f33
File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 50
50
env :
51
51
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
52
52
steps :
53
- - uses : actions/checkout@v3
53
+ - uses : actions/checkout@v4
54
54
- name : Install Rust
55
55
run : rustup update 1.67.1 --no-self-update && rustup default 1.67.1
56
56
- name : Install cargo-dist
99
99
env :
100
100
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
101
101
steps :
102
- - uses : actions/checkout@v3
102
+ - uses : actions/checkout@v4
103
103
- name : Install Rust
104
104
run : rustup update 1.67.1 --no-self-update && rustup default 1.67.1
105
105
- name : Install cargo-dist
@@ -131,7 +131,7 @@ jobs:
131
131
env :
132
132
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
133
133
steps :
134
- - uses : actions/checkout@v3
134
+ - uses : actions/checkout@v4
135
135
- name : mark release as non-draft
136
136
run : |
137
- gh release edit ${{ github.ref_name }} --draft=false
137
+ gh release edit ${{ github.ref_name }} --draft=false
Original file line number Diff line number Diff line change 10
10
name : Rustfmt
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - uses : actions/checkout@v4
14
14
- uses : actions-rs/toolchain@v1
15
15
with :
16
16
profile : minimal
26
26
name : Clippy
27
27
runs-on : ubuntu-latest
28
28
steps :
29
- - uses : actions/checkout@v3
29
+ - uses : actions/checkout@v4
30
30
- uses : actions-rs/toolchain@v1
31
31
with :
32
32
toolchain : stable
42
42
runs-on : ubuntu-latest
43
43
name : Docs
44
44
steps :
45
- - uses : actions/checkout@v3
45
+ - uses : actions/checkout@v4
46
46
with :
47
47
submodules : true
48
48
- name : Install
65
65
RUSTDOCFLAGS : -Cpanic=abort
66
66
runs-on : ubuntu-latest
67
67
steps :
68
- - uses : actions/checkout@v3
68
+ - uses : actions/checkout@v4
69
69
- uses : actions-rs/toolchain@v1
70
70
with :
71
71
profile : minimal
@@ -106,7 +106,7 @@ jobs:
106
106
107
107
- name : Send build success notification
108
108
if : success()
109
- uses : rtCamp/action-slack-notify@v2.0.0
109
+ uses : rtCamp/action-slack-notify@v2.3.2
110
110
env :
111
111
SLACK_MESSAGE : ${{ github.repository }} build ${{ github.run_number }} launched by ${{ github.actor }} has succeeded
112
112
SLACK_TITLE : Build Success
@@ -117,7 +117,7 @@ jobs:
117
117
118
118
- name : Send build failure notification
119
119
if : failure()
120
- uses : rtCamp/action-slack-notify@v2.0.0
120
+ uses : rtCamp/action-slack-notify@v2.3.2
121
121
env :
122
122
SLACK_COLOR : ' #FF0000'
123
123
SLACK_MESSAGE : ${{ github.repository }} build ${{ github.run_number }} launched by ${{ github.actor }} has failed
You can’t perform that action at this time.
0 commit comments