Skip to content

Commit

Permalink
Update github checkout and cache actions to v4.
Browse files Browse the repository at this point in the history
  • Loading branch information
iliekturtles committed Jan 27, 2024
1 parent 31257b8 commit d427cef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-full-test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Rust toolchain
id: install-rust
uses: dtolnay/rust-toolchain@stable

# Cache based on OS/compiler.
- name: Extract cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-min-test-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-tool-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Rust nightly toolchain
uses: dtolnay/rust-toolchain@nightly
Expand All @@ -27,7 +27,7 @@ jobs:

# Tools-specific cache based on OS/compiler.
- name: Extract tools cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo
Expand Down

0 comments on commit d427cef

Please sign in to comment.