Skip to content

Commit ba8caaf

Browse files
Bump actions/checkout from 2 to 3 (#113)
1 parent 99b11c2 commit ba8caaf

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/features.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
profile: minimal
2525
toolchain: stable
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
- uses: taiki-e/install-action@cargo-hack
2828
- name: cargo hack
2929
uses: actions-rs/cargo@v1

.github/workflows/minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
profile: minimal
2929
toolchain: stable
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v3
3131
- run: |
3232
# Wait for startup of openssh-server
3333
timeout 15 ./wait_for_sshd_start_up.sh

.github/workflows/msrv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
profile: minimal
2525
toolchain: 1.63.0
2626
override: true
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2828
- name: cargo +1.63.0 check
2929
uses: actions-rs/cargo@v1
3030
with:

.github/workflows/os-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
profile: minimal
3030
toolchain: stable
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232
- name: cargo test
3333
uses: actions-rs/cargo@v1
3434
with:

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ jobs:
77
shellcheck:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
1111
- name: shellcheck
1212
run: shellcheck *.sh

.github/workflows/style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
toolchain: ${{ matrix.toolchain }}
3131
components: rustfmt, clippy
3232
override: true
33-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v3
3434
- name: cargo fmt --check
3535
uses: actions-rs/cargo@v1
3636
with:
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
profile: minimal
5050
toolchain: nightly
51-
- uses: actions/checkout@v2
51+
- uses: actions/checkout@v3
5252
- name: cargo doc
5353
uses: actions-rs/cargo@v1
5454
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
profile: minimal
2929
toolchain: ${{ matrix.toolchain }}
3030
override: true
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232
- run: |
3333
# Wait for startup of openssh-server
3434
timeout 15 ./wait_for_sshd_start_up.sh

0 commit comments

Comments
 (0)