chore(deps): bump the gha-prod group with 3 updates (#1146)

Bumps the gha-prod group with 3 updates: [taiki-e/install-action](https://github.com/taiki-e/install-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `taiki-e/install-action` from 2 to 2.85.4
- [Release notes](https://github.com/taiki-e/install-action/releases)
- [Commits](https://github.com/taiki-e/install-action/compare/v2...v2.85.4)

Updates `actions/upload-artifact` from 4 to 7
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v7)

Updates `actions/download-artifact` from 7.0.0 to 8.0.1
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](37930b1c2a...3e5f45b2cf)

---
updated-dependencies:
- dependency-name: taiki-e/install-action
  dependency-version: 2.85.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gha-prod
- dependency-name: actions/upload-artifact
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gha-prod
- dependency-name: actions/download-artifact
  dependency-version: 8.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gha-prod
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2026-08-02 10:25:59 +02:00 committed by GitHub
parent d2ae57625f
commit bc379b5f47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 12 deletions

View file

@ -49,7 +49,7 @@ jobs:
exit 1 exit 1
fi fi
- name: Install cargo-generate-rpm - name: Install cargo-generate-rpm
uses: taiki-e/install-action@v2 uses: taiki-e/install-action@v2.85.4
with: with:
tool: cargo-generate-rpm@0.21 tool: cargo-generate-rpm@0.21
- name: Setup cargo cache - name: Setup cargo cache
@ -73,7 +73,7 @@ jobs:
cp target/generate-rpm/*.rpm target/linux-packages/ cp target/generate-rpm/*.rpm target/linux-packages/
ls -l target/linux-packages/ ls -l target/linux-packages/
- name: Upload packages - name: Upload packages
uses: actions/upload-artifact@v6 uses: actions/upload-artifact@v7
with: with:
name: artifacts-linux-packages-${{ matrix.arch }} name: artifacts-linux-packages-${{ matrix.arch }}
path: target/linux-packages/* path: target/linux-packages/*

View file

@ -26,7 +26,7 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
persist-credentials: false persist-credentials: false
- uses: taiki-e/install-action@43aecc8d72668fbcfe75c31400bc4f890f1c5853 # v2 - uses: taiki-e/install-action@065d6a08a14e61e89fb0a4c10eecdbdef39c7d8e # v2
with: with:
tool: git-cliff tool: git-cliff
- id: version - id: version
@ -69,7 +69,7 @@ jobs:
git cliff -u -t "v$VERSION" --strip all git cliff -u -t "v$VERSION" --strip all
echo "$delimiter" echo "$delimiter"
} >> "$GITHUB_OUTPUT" } >> "$GITHUB_OUTPUT"
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6 - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: steps.version.outputs.version != '' if: steps.version.outputs.version != ''
with: with:
name: release-${{ github.sha }} name: release-${{ github.sha }}
@ -86,7 +86,7 @@ jobs:
ref: ${{ github.sha }} ref: ${{ github.sha }}
fetch-depth: 0 fetch-depth: 0
persist-credentials: false persist-credentials: false
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7 - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with: with:
name: release-${{ github.sha }} name: release-${{ github.sha }}
path: ${{ runner.temp }}/release path: ${{ runner.temp }}/release

View file

@ -47,7 +47,7 @@ jobs:
# installs via winget below. # installs via winget below.
name: Install zellij (Linux/macOS) name: Install zellij (Linux/macOS)
if: runner.os != 'Windows' if: runner.os != 'Windows'
uses: taiki-e/install-action@v2 uses: taiki-e/install-action@v2.85.4
with: with:
tool: zellij@0.44.3 tool: zellij@0.44.3
- name: Install zellij (Windows) - name: Install zellij (Windows)
@ -83,7 +83,7 @@ jobs:
run: rustup toolchain install run: rustup toolchain install
- &nextest-install - &nextest-install
name: Install nextest name: Install nextest
uses: taiki-e/install-action@v2 uses: taiki-e/install-action@v2.85.4
with: with:
tool: nextest@0.9 tool: nextest@0.9
- &cache - &cache
@ -123,7 +123,7 @@ jobs:
- *checkout - *checkout
- *toolchain - *toolchain
- *nextest-install - *nextest-install
- uses: taiki-e/install-action@v2 - uses: taiki-e/install-action@v2.85.4
with: with:
tool: cargo-llvm-cov@0.8 tool: cargo-llvm-cov@0.8
- *cache - *cache
@ -198,7 +198,7 @@ jobs:
steps: steps:
- *checkout - *checkout
- *toolchain - *toolchain
- uses: taiki-e/install-action@v2 - uses: taiki-e/install-action@v2.85.4
with: with:
tool: cargo-msrv@0.19 tool: cargo-msrv@0.19
- name: MSRV Verify - name: MSRV Verify
@ -226,7 +226,7 @@ jobs:
# https://rust-fuzz.github.io/book/cargo-fuzz/windows/setup.html). # https://rust-fuzz.github.io/book/cargo-fuzz/windows/setup.html).
if: runner.os == 'Windows' if: runner.os == 'Windows'
uses: ilammy/msvc-dev-cmd@v1 uses: ilammy/msvc-dev-cmd@v1
- uses: taiki-e/install-action@v2 - uses: taiki-e/install-action@v2.85.4
with: with:
tool: cargo-fuzz@0.13 tool: cargo-fuzz@0.13
- name: Run fuzz targets - name: Run fuzz targets
@ -249,7 +249,7 @@ jobs:
done done
- name: Upload crash artifacts - name: Upload crash artifacts
if: failure() if: failure()
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v7
with: with:
name: fuzz-crashes-${{ runner.os }} name: fuzz-crashes-${{ runner.os }}
path: fuzz/artifacts/ path: fuzz/artifacts/
@ -268,7 +268,7 @@ jobs:
- *checkout - *checkout
- *toolchain - *toolchain
- *cache - *cache
- uses: taiki-e/install-action@v2 - uses: taiki-e/install-action@v2.85.4
with: with:
tool: cargo-public-api@0.52 tool: cargo-public-api@0.52
- run: rustup toolchain install nightly-x86_64-unknown-linux-gnu - run: rustup toolchain install nightly-x86_64-unknown-linux-gnu