Skip to content

Commit 8a8607b

Browse files
committed
Fixup README
1 parent 4211411 commit 8a8607b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This action will run `cargo-deny check` and report failure if any banned crates
1919

2020
The action has three optional inputs
2121

22-
* `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**.
22+
* `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**.
2323
* `log-level`: The log level to use for `cargo-deny`, default is `warn`
2424
* `command`: The command to use for `cargo-deny`, default is `check`
2525
* `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
3333
on: [push, pull_request]
3434
jobs:
3535
cargo-deny:
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-22.04
3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3939
- uses: EmbarkStudios/cargo-deny-action@v1
4040
```
4141
@@ -46,9 +46,9 @@ name: CI
4646
on: [push, pull_request]
4747
jobs:
4848
cargo-deny:
49-
runs-on: ubuntu-latest
49+
runs-on: ubuntu-22.04
5050
steps:
51-
- uses: actions/checkout@v2
51+
- uses: actions/checkout@v3
5252
- uses: EmbarkStudios/cargo-deny-action@v1
5353
with:
5454
log-level: warn
@@ -65,9 +65,9 @@ name: CI
6565
on: [push, pull_request]
6666
jobs:
6767
cargo-deny:
68-
runs-on: ubuntu-latest
68+
runs-on: ubuntu-22.04
6969
steps:
70-
- uses: actions/checkout@v2
70+
- uses: actions/checkout@v3
7171
- uses: EmbarkStudios/cargo-deny-action@v1
7272
with:
7373
rust-version: "1.60.0"

tag.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ git tag -a "v$version" -m "Release $version - cargo-deny $deny_version"
1616
git tag -fa "v1" -m "Release $version - cargo-deny $deny_version"
1717

1818
git push --tags --force
19-
git push
19+
git push

0 commit comments

Comments
 (0)