From ad5fb1a06d2673d53606d8aebbb152439a392d10 Mon Sep 17 00:00:00 2001 From: MarcoIeni <11428655+MarcoIeni@users.noreply.github.com> Date: Mon, 9 May 2022 22:58:02 +0200 Subject: [PATCH] Bump rust to 1.60 --- .github/workflows/test.yml | 2 +- Dockerfile | 2 +- README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4a64c69..3ad78d6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,4 +14,4 @@ jobs: run: docker run -v ${PWD}/test:/test test-cargo-deny "" --manifest-path test/Cargo.toml list - name: Run check - run: docker run -v ${PWD}/test:/test test-cargo-deny 1.59.0 --manifest-path test/Cargo.toml --all-features check + run: docker run -v ${PWD}/test:/test test-cargo-deny 1.60.0 --manifest-path test/Cargo.toml --all-features check diff --git a/Dockerfile b/Dockerfile index 15a76e3..50f5147 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.59.0-alpine3.15 +FROM rust:1.60.0-alpine3.15 ENV deny_version="0.11.4" diff --git a/README.md b/README.md index c46ef34..8cab3f6 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ This action will run `cargo-deny check` and report failure if any banned crates The action has three optional inputs -* `rust-version`: The rust/cargo version to use, updated before cargo-deny is run. Defaults to the version in the image, which is currently **1.59.0**. +* `rust-version`: The rust/cargo version to use, updated before cargo-deny is run. Defaults to the version in the image, which is currently **1.60.0**. * `log-level`: The log level to use for `cargo-deny`, default is `warn` * `command`: The command to use for `cargo-deny`, default is `check` * `arguments`: The argument to pass to `cargo-deny`, default is `--all-features`. See [Common Options](https://embarkstudios.github.io/cargo-deny/cli/common.html) for a list of the available options. @@ -68,7 +68,7 @@ jobs: - uses: actions/checkout@v2 - uses: EmbarkStudios/cargo-deny-action@v1 with: - rust-version: "1.59.0" + rust-version: "1.60.0" log-level: warn command: check arguments: --all-features