From d02a1fc40b0443964d8a816c642ecc69f63a4b41 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 15:13:10 +0000 Subject: [PATCH] ci: bump the gh-actions group with 3 updates Bumps the gh-actions group with 3 updates: [Quantco/ui-actions](https://github.com/quantco/ui-actions), [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Updates `Quantco/ui-actions` from 1.0.15 to 1.0.17 - [Commits](https://github.com/quantco/ui-actions/compare/a0653e9fc0ee3c4be9f7cc88e509e40536e9f3c1...8c5c674fd27fb05a436387a14e98b386e0a01d78) Updates `Swatinem/rust-cache` from 2.7.5 to 2.7.7 - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](https://github.com/swatinem/rust-cache/compare/82a92a6e8fbeee089604da2575dc567ae9ddeaab...f0deed1e0edfc6a9be95417288c0e1099b1eeec3) Updates `softprops/action-gh-release` from 2.1.0 to 2.2.0 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/01570a1f39cb168c169c802c3bceb9e93fb10974...7b4da11513bf3f43f9999e90eabced41ab8bb048) --- updated-dependencies: - dependency-name: Quantco/ui-actions dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gh-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- .github/workflows/ci.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8063307..5922a1a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout source code uses: actions/checkout@v4 - - uses: Quantco/ui-actions/version-metadata@a0653e9fc0ee3c4be9f7cc88e509e40536e9f3c1 + - uses: Quantco/ui-actions/version-metadata@8c5c674fd27fb05a436387a14e98b386e0a01d78 id: version-metadata with: file: ./Cargo.toml @@ -82,7 +82,7 @@ jobs: targets: ${{ matrix.target }} - name: Rust cache - uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab + uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 with: key: build-${{ matrix.target }}-${{ needs.metadata.outputs.optimize-build }}-${{ matrix.cross }}-${{ matrix.os }} @@ -120,7 +120,7 @@ jobs: git tag v${{ needs.metadata.outputs.version }} git push origin v${{ needs.metadata.outputs.version }} - name: Create Release - uses: softprops/action-gh-release@01570a1f39cb168c169c802c3bceb9e93fb10974 + uses: softprops/action-gh-release@7b4da11513bf3f43f9999e90eabced41ab8bb048 with: generate_release_notes: true tag_name: v${{ needs.metadata.outputs.version }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d7a94c..808cbe8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - nightly steps: - uses: actions/checkout@v4 - - uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab + - uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: cargo build --verbose - run: cargo test --verbose @@ -34,6 +34,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab + - uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 - name: Run Clippy run: cargo clippy --all-targets --all-features -- -D clippy::all