diff --git a/README.md b/README.md index 10683a0..199b7d7 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.60.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.65.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. @@ -33,9 +33,9 @@ name: CI on: [push, pull_request] jobs: cargo-deny: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: EmbarkStudios/cargo-deny-action@v1 ``` @@ -46,9 +46,9 @@ name: CI on: [push, pull_request] jobs: cargo-deny: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: EmbarkStudios/cargo-deny-action@v1 with: log-level: warn @@ -65,9 +65,9 @@ name: CI on: [push, pull_request] jobs: cargo-deny: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: EmbarkStudios/cargo-deny-action@v1 with: rust-version: "1.60.0" diff --git a/tag.sh b/tag.sh index 78eb82c..4a68d82 100755 --- a/tag.sh +++ b/tag.sh @@ -16,4 +16,4 @@ git tag -a "v$version" -m "Release $version - cargo-deny $deny_version" git tag -fa "v1" -m "Release $version - cargo-deny $deny_version" git push --tags --force -git push \ No newline at end of file +git push