chore(deps)!: use iota-sdk
and remove dependency causing security alert
#3667
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
- "documentation/**" | |
- "docker/**" | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- "documentation/**" | |
- "docker/**" | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check-and-test: | |
name: "check and test" | |
uses: ./.github/workflows/_check.yml | |
with: { os: ubuntu-latest, rust: stable } | |
test-int: | |
name: "integration tests" | |
uses: ./.github/workflows/_test_int.yml | |
with: { os: ubuntu-latest, rust: stable, mongodb: "6.0" } | |
format: | |
uses: ./.github/workflows/_fmt.yml | |
with: { os: ubuntu-latest, rust: nightly } | |
clippy: | |
if: ${{ !github.event.pull_request.draft }} | |
uses: ./.github/workflows/_clippy.yml | |
with: { os: ubuntu-latest, rust: stable } | |
check-toml: | |
if: ${{ !github.event.pull_request.draft }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
override: true | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --force cargo-sort | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: ci-toml | |
docs: | |
if: ${{ !github.event.pull_request.draft }} | |
runs-on: ubuntu-latest | |
env: | |
RUSTDOCFLAGS: "-D warnings" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
override: true | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: ci-doc | |
check-all-features: | |
if: ${{ !github.event.pull_request.draft }} | |
uses: ./.github/workflows/_features.yml |