Skip to content

Commit

Permalink
ci: actions/cache v3 -> v4
Browse files Browse the repository at this point in the history
  • Loading branch information
DevYukine committed Feb 29, 2024
1 parent 23faad4 commit 611ecb6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64-unknown-linux-musl, x86_64-unknown-linux-gnu, i686-unknown-linux-gnu, aarch64-unknown-linux-gnu, armv7-unknown-linux-gnueabihf]
target: [ x86_64-unknown-linux-musl, x86_64-unknown-linux-gnu, i686-unknown-linux-gnu, aarch64-unknown-linux-gnu, armv7-unknown-linux-gnueabihf ]
steps:
- name: Checkout Source code
uses: actions/checkout@v4
- name: Cache Rust dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -55,12 +55,12 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
target: [i686-pc-windows-msvc, x86_64-pc-windows-msvc]
target: [ i686-pc-windows-msvc, x86_64-pc-windows-msvc ]
steps:
- name: Checkout Source code
uses: actions/checkout@v4
- name: Cache Rust dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -88,12 +88,12 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
target: [x86_64-apple-darwin, aarch64-apple-darwin]
target: [ x86_64-apple-darwin, aarch64-apple-darwin ]
steps:
- name: Checkout Source code
uses: actions/checkout@v4
- name: Cache Rust dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down

0 comments on commit 611ecb6

Please sign in to comment.