From 0af8300fa7bbd5468605969e1e4f8ffc08c71989 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Jan 2026 01:41:50 +0000 Subject: [PATCH] ci(deps): bump the all-dependencies group with 5 updates Bumps the all-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) | `0.9.1` | `0.13.0` | | [actions/checkout](https://github.com/actions/checkout) | `3` | `6` | | [actions/cache](https://github.com/actions/cache) | `2` | `5` | | [KyleMayes/install-llvm-action](https://github.com/kylemayes/install-llvm-action) | `1` | `2` | | [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action) | `4.1.8` | `4.8.0` | Updates `styfle/cancel-workflow-action` from 0.9.1 to 0.13.0 - [Release notes](https://github.com/styfle/cancel-workflow-action/releases) - [Commits](https://github.com/styfle/cancel-workflow-action/compare/0.9.1...0.13.0) Updates `actions/checkout` from 3 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v6) Updates `actions/cache` from 2 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v2...v5) Updates `KyleMayes/install-llvm-action` from 1 to 2 - [Release notes](https://github.com/kylemayes/install-llvm-action/releases) - [Changelog](https://github.com/KyleMayes/install-llvm-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/kylemayes/install-llvm-action/compare/v1...v2) Updates `JamesIves/github-pages-deploy-action` from 4.1.8 to 4.8.0 - [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases) - [Commits](https://github.com/jamesives/github-pages-deploy-action/compare/4.1.8...v4.8.0) --- updated-dependencies: - dependency-name: styfle/cancel-workflow-action dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: KyleMayes/install-llvm-action dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: JamesIves/github-pages-deploy-action dependency-version: 4.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 8 ++++---- .github/workflows/clippy.yml | 8 ++++---- .github/workflows/docs.yml | 8 ++++---- .github/workflows/format.yml | 4 ++-- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 14242c6..39b603e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,13 +39,13 @@ jobs: MAKE: ${{ matrix.make_bin }} steps: - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.9.1 + uses: styfle/cancel-workflow-action@0.13.0 with: all_but_latest: true access_token: ${{ github.token }} - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -58,7 +58,7 @@ jobs: - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: | C:/Program Files/LLVM @@ -67,7 +67,7 @@ jobs: - name: Install LLVM and Clang id: install-llvm - uses: KyleMayes/install-llvm-action@v1 + uses: KyleMayes/install-llvm-action@v2 with: version: 15 cached: ${{ steps.cache-llvm.outputs.cache-hit }} diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 223e46a..b08c032 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -12,13 +12,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.9.1 + uses: styfle/cancel-workflow-action@0.13.0 with: all_but_latest: true access_token: ${{ github.token }} - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -32,14 +32,14 @@ jobs: - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: | C:/Program Files/LLVM ./llvm key: llvm-14 - name: Install LLVM and Clang - uses: KyleMayes/install-llvm-action@v1 + uses: KyleMayes/install-llvm-action@v2 with: version: "14" cached: ${{ steps.cache-llvm.outputs.cache-hit }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d84b3b6..dfe33f0 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -28,7 +28,7 @@ jobs: - name: Cache LLVM and Clang id: cache-llvm - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: | C:/Program Files/LLVM @@ -37,7 +37,7 @@ jobs: - name: Install LLVM and Clang id: install-llvm - uses: KyleMayes/install-llvm-action@v1 + uses: KyleMayes/install-llvm-action@v2 with: version: 15 cached: ${{ steps.cache-llvm.outputs.cache-hit }} @@ -62,7 +62,7 @@ jobs: run: cargo +nightly doc --verbose --no-deps --lib --bins --workspace --document-private-items - name: Deploy - uses: JamesIves/github-pages-deploy-action@4.1.8 + uses: JamesIves/github-pages-deploy-action@v4.8.0 with: token: ${{ secrets.GITHUB_TOKEN }} branch: gh-pages diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 3f3f4a1..4527d39 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -13,13 +13,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.9.1 + uses: styfle/cancel-workflow-action@0.13.0 with: all_but_latest: true access_token: ${{ github.token }} - name: Checkout repo - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0