File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 7
7
permissions :
8
8
contents : write # to update _contrib
9
9
pull-requests : write # to send the updated _contrib PRs
10
-
10
+
11
11
jobs :
12
12
update-contrib :
13
13
name : Update _contrib
14
14
runs-on : ubuntu-latest
15
15
16
16
steps :
17
17
- name : Checkout website
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
19
with :
20
20
persist-credentials : false
21
21
22
22
- name : Checkout hyper
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
24
24
with :
25
25
persist-credentials : false
26
26
repository : hyperium/hyper
@@ -96,11 +96,11 @@ jobs:
96
96
- name : Lowercase filenames and replace underscores
97
97
run : |
98
98
for f in hyper/docs/*; do
99
- mv -vn "$f" "$(echo "$f" | tr '[:upper:]' '[:lower:]' | tr '_' '-')";
99
+ mv -vn "$f" "$(echo '$f' | tr '[:upper:]' '[:lower:]' | tr '_' '-')";
100
100
done
101
101
102
102
- name : Copy the hyper docs to contrib
103
- run : |
103
+ run : |
104
104
mkdir -p _contrib
105
105
cp -a hyper/docs/. _contrib/
106
106
You can’t perform that action at this time.
0 commit comments