Skip to content

Commit 56e8e89

Browse files
committed
Update github checkout and cache actions to v4.
1 parent 5fa2549 commit 56e8e89

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci-full-test-suite.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010

1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: Install Rust toolchain
1616
id: install-rust
1717
uses: dtolnay/rust-toolchain@stable
1818

1919
# Cache based on OS/compiler.
2020
- name: Extract cache
21-
uses: actions/cache@v3
21+
uses: actions/cache@v4
2222
with:
2323
path: |
2424
~/.cargo

.github/workflows/ci-min-test-matrix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727

2828
- name: Install Rust toolchain
2929
uses: dtolnay/rust-toolchain@master

.github/workflows/ci-tool-checks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Install Rust nightly toolchain
1919
uses: dtolnay/rust-toolchain@nightly
@@ -27,7 +27,7 @@ jobs:
2727

2828
# Tools-specific cache based on OS/compiler.
2929
- name: Extract tools cache
30-
uses: actions/cache@v3
30+
uses: actions/cache@v4
3131
with:
3232
path: |
3333
~/.cargo

0 commit comments

Comments
 (0)