Skip to content

Commit 4c64d7c

Browse files
ci: Update to actions/checkout@v4 from v3.
This also updates the book's section on CI for the same thing. changelog: none
1 parent cda1701 commit 4c64d7c

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/clippy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
github_token: "${{ secrets.github_token }}"
3939

4040
- name: Checkout
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
- name: Install toolchain
4444
run: rustup show active-toolchain

.github/workflows/clippy_bors.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
github_token: "${{ secrets.github_token }}"
2727

2828
- name: Checkout
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
ref: ${{ github.ref }}
3232

@@ -72,7 +72,7 @@ jobs:
7272
github_token: "${{ secrets.github_token }}"
7373

7474
- name: Checkout
75-
uses: actions/checkout@v3
75+
uses: actions/checkout@v4
7676

7777
- name: Install i686 dependencies
7878
if: matrix.host == 'i686-unknown-linux-gnu'
@@ -151,7 +151,7 @@ jobs:
151151
github_token: "${{ secrets.github_token }}"
152152

153153
- name: Checkout
154-
uses: actions/checkout@v3
154+
uses: actions/checkout@v4
155155

156156
- name: Install toolchain
157157
run: rustup show active-toolchain
@@ -175,7 +175,7 @@ jobs:
175175
github_token: "${{ secrets.github_token }}"
176176

177177
- name: Checkout
178-
uses: actions/checkout@v3
178+
uses: actions/checkout@v4
179179

180180
- name: Install toolchain
181181
run: rustup show active-toolchain
@@ -231,7 +231,7 @@ jobs:
231231
github_token: "${{ secrets.github_token }}"
232232

233233
- name: Checkout
234-
uses: actions/checkout@v3
234+
uses: actions/checkout@v4
235235

236236
- name: Install toolchain
237237
run: rustup show active-toolchain

.github/workflows/clippy_dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# Setup
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
# Run
3030
- name: Build

.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@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
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@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Setup Node.js
2222
uses: actions/setup-node@v3

book/src/continuous_integration/github_actions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
clippy_check:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Run Clippy
2020
run: cargo clippy --all-targets --all-features
2121
```

0 commit comments

Comments
 (0)