Skip to content

Commit c80cd4d

Browse files
committed
Auto merge of rust-lang#8764 - dtolnay-contrib:checkoutv3, r=llogiq
Update GitHub Actions actions/checkout@v2 to v3 The v2 implementation uses Node 12, which is end-of-life on April 30, 2022. See https://nodejs.org/en/about/releases/. Update to v3, which is based on Node 16 whose support lasts until April 30, 2024. --- changelog: none
2 parents d5c62fd + 8ef4b8d commit c80cd4d

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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

.github/workflows/clippy_bors.yml

Lines changed: 4 additions & 4 deletions
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
@@ -154,7 +154,7 @@ jobs:
154154
github_token: "${{ secrets.github_token }}"
155155

156156
- name: Checkout
157-
uses: actions/checkout@v2.3.3
157+
uses: actions/checkout@v3.0.2
158158

159159
- name: Install toolchain
160160
run: rustup show active-toolchain
@@ -212,7 +212,7 @@ jobs:
212212
github_token: "${{ secrets.github_token }}"
213213

214214
- name: Checkout
215-
uses: actions/checkout@v2.3.3
215+
uses: actions/checkout@v3.0.2
216216

217217
- name: Install toolchain
218218
run: rustup show active-toolchain

.github/workflows/clippy_dev.yml

Lines changed: 1 addition & 1 deletion
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

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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)