Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/checkout from 4.1.7 to 4.2.0 #20

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install cargo-audit
run: cargo install cargo-audit

- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0
- name: Resolve dependencies
run: cargo update

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
- uses: hecrj/[email protected]
with:
components: clippy
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0
- name: Check lints
run: cargo check --all-targets --workspace --all-features
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0

# Setup Rust nightly
- name: Install Rust
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/document.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
rust-version: nightly

- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0

- name: Update libssl
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
- uses: hecrj/[email protected]
with:
components: clippy
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0
- name: Check format
run: cargo fmt --all -- --check --verbose
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
- uses: hecrj/[email protected]
with:
components: clippy
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0
- name: Check lints
run: cargo clippy --workspace --all-features --all-targets --no-deps -- -D warnings
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
# Check out the repository code.
- name: Checkout sources
id: checkout
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0

# Install the stable Rust toolchain.
- name: Install stable toolchain
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
steps:
# Check out the repository code
- name: Checkout sources
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0

# Install the stable Rust toolchain
- name: Install stable toolchain
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
steps:
# Check out the repository code
- name: Checkout
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0

# Install the stable Rust toolchain
- name: Install stable toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0

# Setup Rust
- name: Setup Rust
Expand Down
Loading