From dec7979644302e978356ce9d65cfcb095e4c48e7 Mon Sep 17 00:00:00 2001 From: Slack Coder Date: Wed, 11 Jan 2023 14:46:59 +0000 Subject: [PATCH] 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 --- .github/workflows/actions.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index d14823f7..21876118 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -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') }}