Make everything use checkout@v3

This commit is contained in:
Jon Gjengset 2022-09-17 12:47:38 -07:00
parent 2de2235ad3
commit 0f90a0b779
10 changed files with 11 additions and 11 deletions

View file

@ -12,7 +12,7 @@ jobs:
profile: minimal profile: minimal
toolchain: nightly toolchain: nightly
override: true override: true
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: cargo test -Zsanitizer=address - name: cargo test -Zsanitizer=address
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:

View file

@ -11,7 +11,7 @@ jobs:
with: with:
profile: minimal profile: minimal
toolchain: stable toolchain: stable
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- name: Install cargo-hack - name: Install cargo-hack

View file

@ -11,7 +11,7 @@ jobs:
with: with:
toolchain: stable toolchain: stable
profile: minimal profile: minimal
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: cargo test --test loom - name: cargo test --test loom
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:

View file

@ -12,7 +12,7 @@ jobs:
profile: minimal profile: minimal
toolchain: nightly toolchain: nightly
override: true override: true
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- run: | - run: |
# to get the symbolizer for debug symbol resolution # to get the symbolizer for debug symbol resolution
sudo apt install llvm sudo apt install llvm

View file

@ -15,7 +15,7 @@ jobs:
with: with:
profile: minimal profile: minimal
toolchain: stable toolchain: stable
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- name: cargo update -Zminimal-versions - name: cargo update -Zminimal-versions

View file

@ -15,7 +15,7 @@ jobs:
toolchain: ${{ env.NIGHTLY }} toolchain: ${{ env.NIGHTLY }}
override: true override: true
components: miri components: miri
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: cargo miri test - name: cargo miri test
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:

View file

@ -12,7 +12,7 @@ jobs:
profile: minimal profile: minimal
toolchain: 1.56.1 # 2021 edition requires 1.56 toolchain: 1.56.1 # 2021 edition requires 1.56
override: true override: true
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- name: cargo +1.56.1 check - name: cargo +1.56.1 check

View file

@ -16,7 +16,7 @@ jobs:
profile: minimal profile: minimal
toolchain: stable toolchain: stable
target: ${{ matrix.target }} target: ${{ matrix.target }}
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: cargo check - name: cargo check
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:

View file

@ -16,7 +16,7 @@ jobs:
with: with:
profile: minimal profile: minimal
toolchain: stable toolchain: stable
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: cargo test - name: cargo test
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:

View file

@ -17,7 +17,7 @@ jobs:
profile: minimal profile: minimal
toolchain: ${{ matrix.toolchain }} toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy components: rustfmt, clippy
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- name: cargo fmt --check - name: cargo fmt --check
@ -37,7 +37,7 @@ jobs:
with: with:
profile: minimal profile: minimal
toolchain: nightly toolchain: nightly
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: cargo doc - name: cargo doc
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with: