Skip to content

Commit 0f90a0b

Browse files
committed
Make everything use checkout@v3
1 parent 2de2235 commit 0f90a0b

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

github/workflows/asan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
profile: minimal
1313
toolchain: nightly
1414
override: true
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- name: cargo test -Zsanitizer=address
1717
uses: actions-rs/cargo@v1
1818
with:

github/workflows/features.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
with:
1212
profile: minimal
1313
toolchain: stable
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
with:
1616
submodules: true
1717
- name: Install cargo-hack

github/workflows/loom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
with:
1212
toolchain: stable
1313
profile: minimal
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: cargo test --test loom
1616
uses: actions-rs/cargo@v1
1717
with:

github/workflows/lsan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
profile: minimal
1313
toolchain: nightly
1414
override: true
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- run: |
1717
# to get the symbolizer for debug symbol resolution
1818
sudo apt install llvm

github/workflows/minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
profile: minimal
1717
toolchain: stable
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
with:
2020
submodules: true
2121
- name: cargo update -Zminimal-versions

github/workflows/miri.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
toolchain: ${{ env.NIGHTLY }}
1616
override: true
1717
components: miri
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
- name: cargo miri test
2020
uses: actions-rs/cargo@v1
2121
with:

github/workflows/msrv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
profile: minimal
1313
toolchain: 1.56.1 # 2021 edition requires 1.56
1414
override: true
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
with:
1717
submodules: true
1818
- name: cargo +1.56.1 check

github/workflows/nostd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
profile: minimal
1717
toolchain: stable
1818
target: ${{ matrix.target }}
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: cargo check
2121
uses: actions-rs/cargo@v1
2222
with:

github/workflows/os-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
profile: minimal
1818
toolchain: stable
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: cargo test
2121
uses: actions-rs/cargo@v1
2222
with:

github/workflows/style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
profile: minimal
1818
toolchain: ${{ matrix.toolchain }}
1919
components: rustfmt, clippy
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
with:
2222
submodules: true
2323
- name: cargo fmt --check
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
profile: minimal
3939
toolchain: nightly
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141
- name: cargo doc
4242
uses: actions-rs/cargo@v1
4343
with:

0 commit comments

Comments
 (0)