Update github workflow dependencies
Outdated dependencies are producing warnings, some about upcoming deprecations. For example: ``` The `set-output` command is deprecated and will be disabled soon. ``` or ``` The `save-state` command is deprecated and will be disabled soon. ``` Signed-off-by: Slack Coder <slackcoder@server.ky>
This commit is contained in:
parent
66f0f87933
commit
dec7979644
|
|
@ -11,7 +11,7 @@ jobs:
|
|||
name: Build & Test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
|
|
@ -27,7 +27,7 @@ jobs:
|
|||
name: Docs
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions-rs/toolchain@v1
|
||||
- name: Docs
|
||||
run: cargo doc --all --all-features
|
||||
|
|
@ -38,14 +38,14 @@ jobs:
|
|||
name: Lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
components: clippy, rustfmt
|
||||
toolchain: 1.66
|
||||
- name: Cache cargo registry
|
||||
uses: actions/cache@v1
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: ~/.cargo/registry
|
||||
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
|
|
|||
Loading…
Reference in New Issue