Skip to content

Commit

Permalink
Bump the dependencies group with 5 updates
Browse files Browse the repository at this point in the history
Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `4.1.0` | `4.1.1` |
| [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) | `2.7.0` | `2.7.1` |
| [taiki-e/install-action](https://github.com/taiki-e/install-action) | `2.18.16` | `2.21.17` |
| [raven-actions/actionlint](https://github.com/raven-actions/actionlint) | `1.0.2` | `1.0.3` |
| [crate-ci/typos](https://github.com/crate-ci/typos) | `1.16.13` | `1.16.23` |


Updates `actions/checkout` from 4.1.0 to 4.1.1
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@8ade135...b4ffde6)

Updates `Swatinem/rust-cache` from 2.7.0 to 2.7.1
- [Release notes](https://github.com/swatinem/rust-cache/releases)
- [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md)
- [Commits](Swatinem/rust-cache@a95ba19...3cf7f8c)

Updates `taiki-e/install-action` from 2.18.16 to 2.21.17
- [Release notes](https://github.com/taiki-e/install-action/releases)
- [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md)
- [Commits](taiki-e/install-action@5b205dd...ccc14bd)

Updates `raven-actions/actionlint` from 1.0.2 to 1.0.3
- [Release notes](https://github.com/raven-actions/actionlint/releases)
- [Commits](raven-actions/actionlint@d6c9e32...789059c)

Updates `crate-ci/typos` from 1.16.13 to 1.16.23
- [Release notes](https://github.com/crate-ci/typos/releases)
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md)
- [Commits](crate-ci/typos@5edf45b...c97d621)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: Swatinem/rust-cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: taiki-e/install-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: raven-actions/actionlint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: crate-ci/typos
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 20, 2023
1 parent d0d53b2 commit a709644
Show file tree
Hide file tree
Showing 15 changed files with 40 additions and 40 deletions.
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@ccc14bdc8d34cddf54e4f9fb2da0c208427207a3
with:
tool: cargo-release

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ 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
uses: raven-actions/actionlint@789059c543ab20522fb3e7240794e13b0f69ad67
with:
group-result: false
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@ccc14bdc8d34cddf54e4f9fb2da0c208427207a3
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@ccc14bdc8d34cddf54e4f9fb2da0c208427207a3
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@ccc14bdc8d34cddf54e4f9fb2da0c208427207a3
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@c97d621b6b01d8b0258538ca15abeca5c5764601
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@ccc14bdc8d34cddf54e4f9fb2da0c208427207a3
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
2 changes: 1 addition & 1 deletion .github/workflows/preload-caches-actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Save latest actionlint into GitHub Actions cache
uses: raven-actions/actionlint@d6c9e3222b489401880e866bc6715049773b63a3
uses: raven-actions/actionlint@789059c543ab20522fb3e7240794e13b0f69ad67
with:
group-result: false
flags: -version
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@ccc14bdc8d34cddf54e4f9fb2da0c208427207a3
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@ccc14bdc8d34cddf54e4f9fb2da0c208427207a3
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@ccc14bdc8d34cddf54e4f9fb2da0c208427207a3
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@ccc14bdc8d34cddf54e4f9fb2da0c208427207a3
with:
tool: cargo-release

Expand Down

0 comments on commit a709644

Please sign in to comment.