Skip to content

Commit c9be57d

Browse files
authored
Merge branch 'master' into doc_link_with_quotes
2 parents cb29e3e + 1dd5547 commit c9be57d

File tree

881 files changed

+28859
-10873
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

881 files changed

+28859
-10873
lines changed

.github/ISSUE_TEMPLATE/blank_issue.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ body:
99
attributes:
1010
label: Description
1111
description: >
12-
Please provide a discription of the issue, along with any information
12+
Please provide a description of the issue, along with any information
1313
you feel relevant to replicate it.
1414
validations:
1515
required: true

.github/ISSUE_TEMPLATE/bug_report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ body:
1818
id: reproducer
1919
attributes:
2020
label: Reproducer
21-
description: Please provide the code and steps to repoduce the bug
21+
description: Please provide the code and steps to reproduce the bug
2222
value: |
2323
I tried this code:
2424

.github/ISSUE_TEMPLATE/false_negative.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ body:
2323
id: reproducer
2424
attributes:
2525
label: Reproducer
26-
description: Please provide the code and steps to repoduce the bug
26+
description: Please provide the code and steps to reproduce the bug
2727
value: |
2828
I tried this code:
2929

.github/ISSUE_TEMPLATE/false_positive.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ body:
2424
attributes:
2525
label: Reproducer
2626
description: >
27-
Please provide the code and steps to repoduce the bug together with the
27+
Please provide the code and steps to reproduce the bug together with the
2828
output from Clippy.
2929
value: |
3030
I tried this code:

.github/ISSUE_TEMPLATE/ice.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ body:
1010
attributes:
1111
label: Summary
1212
description: |
13-
If possible, try to provide a minimal verifiable example. You can read ["Rust Bug Minimization Patterns"][mve] for how to create smaller examples. Otherwise, provide the crate where the ICE occured.
13+
If possible, try to provide a minimal verifiable example. You can read ["Rust Bug Minimization Patterns"][mve] for how to create smaller examples. Otherwise, provide the crate where the ICE occurred.
1414
1515
[mve]: http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/
1616
validations:

.github/deploy.sh

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ rm -rf out/master/ || exit 0
88
echo "Making the docs for master"
99
mkdir out/master/
1010
cp util/gh-pages/index.html out/master
11+
cp util/gh-pages/script.js out/master
1112
cp util/gh-pages/lints.json out/master
1213

1314
if [[ -n $TAG_NAME ]]; then

.github/workflows/clippy.yml

+3-10
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ on:
66
branches-ignore:
77
- auto
88
- try
9-
# Don't run Clippy tests, when only textfiles were modified
9+
# Don't run Clippy tests, when only text files were modified
1010
paths-ignore:
1111
- 'COPYRIGHT'
1212
- 'LICENSE-*'
1313
- '**.md'
1414
- '**.txt'
1515
pull_request:
16-
# Don't run Clippy tests, when only textfiles were modified
16+
# Don't run Clippy tests, when only text files were modified
1717
paths-ignore:
1818
- 'COPYRIGHT'
1919
- 'LICENSE-*'
@@ -37,7 +37,7 @@ jobs:
3737
github_token: "${{ secrets.github_token }}"
3838

3939
- name: Checkout
40-
uses: actions/checkout@v2.3.3
40+
uses: actions/checkout@v3.0.2
4141

4242
- name: Install toolchain
4343
run: rustup show active-toolchain
@@ -74,10 +74,3 @@ jobs:
7474
run: bash .github/driver.sh
7575
env:
7676
OS: ${{ runner.os }}
77-
78-
- name: Test cargo dev new lint
79-
run: |
80-
cargo dev new_lint --name new_early_pass --pass early
81-
cargo dev new_lint --name new_late_pass --pass late
82-
cargo check
83-
git reset --hard HEAD

.github/workflows/clippy_bors.yml

+4-11
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
github_token: "${{ secrets.github_token }}"
2626

2727
- name: Checkout
28-
uses: actions/checkout@v2.3.3
28+
uses: actions/checkout@v3.0.2
2929
with:
3030
ref: ${{ github.ref }}
3131

@@ -88,7 +88,7 @@ jobs:
8888
if: matrix.host == 'i686-unknown-linux-gnu'
8989

9090
- name: Checkout
91-
uses: actions/checkout@v2.3.3
91+
uses: actions/checkout@v3.0.2
9292

9393
- name: Install toolchain
9494
run: rustup show active-toolchain
@@ -143,13 +143,6 @@ jobs:
143143
env:
144144
OS: ${{ runner.os }}
145145

146-
- name: Test cargo dev new lint
147-
run: |
148-
cargo dev new_lint --name new_early_pass --pass early
149-
cargo dev new_lint --name new_late_pass --pass late
150-
cargo check
151-
git reset --hard HEAD
152-
153146
integration_build:
154147
needs: changelog
155148
runs-on: ubuntu-latest
@@ -161,7 +154,7 @@ jobs:
161154
github_token: "${{ secrets.github_token }}"
162155

163156
- name: Checkout
164-
uses: actions/checkout@v2.3.3
157+
uses: actions/checkout@v3.0.2
165158

166159
- name: Install toolchain
167160
run: rustup show active-toolchain
@@ -219,7 +212,7 @@ jobs:
219212
github_token: "${{ secrets.github_token }}"
220213

221214
- name: Checkout
222-
uses: actions/checkout@v2.3.3
215+
uses: actions/checkout@v3.0.2
223216

224217
- name: Install toolchain
225218
run: rustup show active-toolchain

.github/workflows/clippy_dev.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
# Setup
2525
- name: Checkout
26-
uses: actions/checkout@v2.3.3
26+
uses: actions/checkout@v3.0.2
2727

2828
# Run
2929
- name: Build
@@ -36,6 +36,13 @@ jobs:
3636
- name: Test fmt
3737
run: cargo dev fmt --check
3838

39+
- name: Test cargo dev new lint
40+
run: |
41+
cargo dev new_lint --name new_early_pass --pass early
42+
cargo dev new_lint --name new_late_pass --pass late
43+
cargo check
44+
git reset --hard HEAD
45+
3946
# These jobs doesn't actually test anything, but they're only used to tell
4047
# bors the build completed, as there is no practical way to detect when a
4148
# workflow is successful listening to webhooks only.

.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
steps:
2222
# Setup
2323
- name: Checkout
24-
uses: actions/checkout@v2.3.3
24+
uses: actions/checkout@v3.0.2
2525

2626
- name: Checkout
27-
uses: actions/checkout@v2.3.3
27+
uses: actions/checkout@v3.0.2
2828
with:
2929
ref: ${{ env.TARGET_BRANCH }}
3030
path: 'out'

.github/workflows/remark.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
# Setup
1818
- name: Checkout
19-
uses: actions/checkout@v2.3.3
19+
uses: actions/checkout@v3.0.2
2020

2121
- name: Setup Node.js
2222
uses: actions/[email protected]

0 commit comments

Comments
 (0)