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

Bump the dependencies group with 4 updates #73

Closed
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/bump-version-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
private_key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
ref: main
fetch-depth: 0
Expand All @@ -50,13 +50,13 @@ jobs:
toolchain: stable

- name: Cache dependencies
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8
with:
shared-key: stable-ubuntu-latest
timeout-minutes: 5

- name: Install cargo-release
uses: taiki-e/install-action@5b205dd5b807eef56fdbfeedeedcee63c5d44090
uses: taiki-e/install-action@11dea51b35bc2bfa42820716c6cabb14fd4c3266
with:
tool: cargo-release

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Lint GitHub Actions workflow files
uses: raven-actions/actionlint@d6c9e3222b489401880e866bc6715049773b63a3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Check Markdown file formatting
run: npx --yes "prettier@${{ inputs.prettier_version }}" --check --debug-check --color --prose-wrap always -- ${{ inputs.files }}
4 changes: 2 additions & 2 deletions .github/workflows/check-rust-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install beta Rust toolchain
uses: dtolnay/rust-toolchain@439cf607258077187679211f12aa6f19af4a0af7
with:
toolchain: beta
- name: Set override to beta Rust
run: rustup override set beta
- name: Install cargo-nextest
uses: taiki-e/install-action@5b205dd5b807eef56fdbfeedeedcee63c5d44090
uses: taiki-e/install-action@11dea51b35bc2bfa42820716c6cabb14fd4c3266
with:
tool: cargo-nextest
- name: Compile tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-rust-miri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install nightly Rust toolchain
uses: dtolnay/rust-toolchain@439cf607258077187679211f12aa6f19af4a0af7
with:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/check-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install nightly Rust toolchain
uses: dtolnay/rust-toolchain@439cf607258077187679211f12aa6f19af4a0af7
with:
Expand All @@ -29,14 +29,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install stable Rust toolchain
uses: dtolnay/rust-toolchain@439cf607258077187679211f12aa6f19af4a0af7
with:
toolchain: stable
components: clippy
- name: Cache dependencies
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8
with:
shared-key: stable-ubuntu-latest
timeout-minutes: 5
Expand All @@ -61,18 +61,18 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install stable Rust toolchain
uses: dtolnay/rust-toolchain@439cf607258077187679211f12aa6f19af4a0af7
with:
toolchain: stable
- name: Cache dependencies
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8
with:
shared-key: stable-${{ matrix.platform }}
timeout-minutes: 5
- name: Install cargo-nextest
uses: taiki-e/install-action@5b205dd5b807eef56fdbfeedeedcee63c5d44090
uses: taiki-e/install-action@11dea51b35bc2bfa42820716c6cabb14fd4c3266
with:
tool: cargo-nextest
- name: Compile tests
Expand All @@ -90,7 +90,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- id: msrv
name: Get MSRV from package metadata
run: awk -F '"' '/rust-version/{ print "version=" $2 }' Cargo.toml >> "$GITHUB_OUTPUT"
Expand All @@ -107,12 +107,12 @@ jobs:
- name: Set override to MSRV Rust
run: rustup override set ${{ steps.msrv.outputs.version }}
- name: Cache dependencies
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8
with:
shared-key: msrv-ubuntu-latest
timeout-minutes: 5
- name: Install cargo-nextest
uses: taiki-e/install-action@5b205dd5b807eef56fdbfeedeedcee63c5d44090
uses: taiki-e/install-action@11dea51b35bc2bfa42820716c6cabb14fd4c3266
with:
tool: cargo-nextest
- name: Compile tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-spelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Check files for common misspellings
# NOTE: dependabot struggles with determining the latest release version
# in this monorepo; see https://github.com/crate-ci/typos/releases
uses: crate-ci/typos@5edf45b39e546b1ff8af3ee205d68969434d8138
uses: crate-ci/typos@0d04ce91a7a8436a6e3c589750514ac586632192
with:
files: "${{ inputs.files }}"
2 changes: 1 addition & 1 deletion .github/workflows/deploy-github-pages-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install nightly Rust toolchain
uses: dtolnay/rust-toolchain@439cf607258077187679211f12aa6f19af4a0af7
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/detect-changed-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
rust_files: ${{ steps.filter.outputs.rust_files }}
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
fetch-depth: 20
- name: Filter changed repository files
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/draft-release-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
url: ${{ steps.gh_release.outputs.url }}
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- id: gh_release
name: Create a new GitHub draft release
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install musl tools
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y musl-tools
Expand All @@ -80,13 +80,13 @@ jobs:
toolchain: stable
targets: ${{ matrix.target }}
- name: Cache dependencies
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8
with:
shared-key: stable-ubuntu-latest
timeout-minutes: 5
- name: Install cross
if: matrix.os == 'ubuntu-latest'
uses: taiki-e/install-action@5b205dd5b807eef56fdbfeedeedcee63c5d44090
uses: taiki-e/install-action@11dea51b35bc2bfa42820716c6cabb14fd4c3266
with:
tool: cross
- name: Building release assets
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flush-caches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Delete all GitHub Actions cache entries for the current branch
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/preload-caches-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install stable Rust toolchain
uses: dtolnay/rust-toolchain@439cf607258077187679211f12aa6f19af4a0af7
with:
toolchain: stable
- name: Cache dependencies
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8
with:
shared-key: stable-${{ matrix.platform }}
timeout-minutes: 5
- name: Install cargo-nextest
uses: taiki-e/install-action@5b205dd5b807eef56fdbfeedeedcee63c5d44090
uses: taiki-e/install-action@11dea51b35bc2bfa42820716c6cabb14fd4c3266
with:
tool: cargo-nextest
- name: Check packages and dependencies for errors
Expand All @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- id: msrv
name: Get MSRV from package metadata
run: awk -F '"' '/rust-version/{ print "version=" $2 }' Cargo.toml >> "$GITHUB_OUTPUT"
Expand All @@ -65,12 +65,12 @@ jobs:
- name: Set override to MSRV Rust
run: rustup override set ${{ steps.msrv.outputs.version }}
- name: Cache dependencies
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8
with:
shared-key: msrv-ubuntu-latest
timeout-minutes: 5
- name: Install cargo-nextest
uses: taiki-e/install-action@5b205dd5b807eef56fdbfeedeedcee63c5d44090
uses: taiki-e/install-action@11dea51b35bc2bfa42820716c6cabb14fd4c3266
with:
tool: cargo-nextest
- name: Check packages and dependencies for errors
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-crate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
fetch-depth: 0

Expand All @@ -29,13 +29,13 @@ jobs:
toolchain: stable

- name: Cache dependencies
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8
with:
shared-key: stable-ubuntu-latest
timeout-minutes: 5

- name: Install cargo-release
uses: taiki-e/install-action@5b205dd5b807eef56fdbfeedeedcee63c5d44090
uses: taiki-e/install-action@11dea51b35bc2bfa42820716c6cabb14fd4c3266
with:
tool: cargo-release

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tag-untagged-releases-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
private_key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Checkout source code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
ref: main
token: ${{ steps.generate_token.outputs.token }}
Expand All @@ -44,13 +44,13 @@ jobs:
toolchain: stable

- name: Cache dependencies
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43
uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8
with:
shared-key: stable-ubuntu-latest
timeout-minutes: 5

- name: Install cargo-release
uses: taiki-e/install-action@5b205dd5b807eef56fdbfeedeedcee63c5d44090
uses: taiki-e/install-action@11dea51b35bc2bfa42820716c6cabb14fd4c3266
with:
tool: cargo-release

Expand Down