Skip to content

Commit ff05428

Browse files
authored
Merge pull request sgodwincs#24 from sgodwincs/dependabot/github_actions/actions/checkout-4
Bump actions/checkout from 3 to 4
2 parents 3c4a070 + a9344cc commit ff05428

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
- name: Install Rust
1919
uses: actions-rs/toolchain@v1
2020
with:

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- uses: actions-rs/toolchain@v1
1616
with:
1717
toolchain: nightly

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
os: [windows-latest, ubuntu-latest]
1212
runs-on: ${{ matrix.os }}
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: actions-rs/toolchain@v1
1616
with:
1717
toolchain: nightly
@@ -26,7 +26,7 @@ jobs:
2626
miri:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
- uses: actions-rs/toolchain@v1
3131
with:
3232
toolchain: nightly
@@ -40,7 +40,7 @@ jobs:
4040
- name: Get number of CPU cores
4141
uses: SimenB/github-actions-cpu-cores@v2
4242
id: cpu-cores
43-
- uses: actions/checkout@v3
43+
- uses: actions/checkout@v4
4444
- uses: actions-rs/toolchain@v1
4545
with:
4646
toolchain: nightly
@@ -59,7 +59,7 @@ jobs:
5959
lint:
6060
runs-on: ubuntu-latest
6161
steps:
62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v4
6363
- uses: actions-rs/toolchain@v1
6464
with:
6565
toolchain: nightly
@@ -75,7 +75,7 @@ jobs:
7575
env:
7676
CARGO_TERM_COLOR: always
7777
steps:
78-
- uses: actions/checkout@v3
78+
- uses: actions/checkout@v4
7979
- uses: actions-rs/toolchain@v1
8080
with:
8181
toolchain: nightly

0 commit comments

Comments
 (0)