Skip to content

Commit

Permalink
Update GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed Oct 20, 2023
1 parent 1797fb2 commit 5f8981b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache cargo dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
- ~/.cargo/bin/
Expand All @@ -32,7 +32,7 @@ jobs:
${{ runner.OS }}-cargo-
- name: Cache build output dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: target
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Install Rust
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -96,10 +96,10 @@ jobs:
- "serde"
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache cargo dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
- ~/.cargo/bin/
Expand All @@ -112,7 +112,7 @@ jobs:
${{ runner.OS }}-cargo-
- name: Cache build output dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: target
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
Expand Down Expand Up @@ -148,10 +148,10 @@ jobs:
- "serde"
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache cargo dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
- ~/.cargo/bin/
Expand All @@ -164,7 +164,7 @@ jobs:
${{ runner.OS }}-cargo-
- name: Cache build output dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: target
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
Expand Down Expand Up @@ -205,10 +205,10 @@ jobs:
- "--release"
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache cargo dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
- ~/.cargo/bin/
Expand All @@ -221,7 +221,7 @@ jobs:
${{ runner.OS }}-cargo-
- name: Cache build output dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: target
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
Expand Down Expand Up @@ -256,10 +256,10 @@ jobs:
- "--release"
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache cargo dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
- ~/.cargo/bin/
Expand All @@ -271,7 +271,7 @@ jobs:
${{ runner.OS }}-cargo-
- name: Cache build output dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: target
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
Expand Down Expand Up @@ -308,10 +308,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache cargo dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
- ~/.cargo/bin/
Expand All @@ -323,7 +323,7 @@ jobs:
${{ runner.OS }}-cargo-
- name: Cache build output dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: target
key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Check that changelog updated
uses: dangoslen/changelog-enforcer@v3
Expand Down

0 comments on commit 5f8981b

Please sign in to comment.