Skip to content

Commit

Permalink
Fixup README
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Nov 17, 2022
1 parent 4211411 commit 8a8607b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
```
Expand All @@ -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
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
git push

0 comments on commit 8a8607b

Please sign in to comment.