From 9292dee3e6f652363607c1f8a916c90e1fffa9ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 06:31:53 +0000 Subject: [PATCH] deps: bump the deps group with 3 updates Bumps the deps group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [crate-ci/typos](https://github.com/crate-ci/typos). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) Updates `crate-ci/typos` from 1.43.5 to 1.44.0 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/v1.43.5...v1.44.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps - dependency-name: crate-ci/typos dependency-version: 1.44.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps ... Signed-off-by: dependabot[bot] --- .github/workflows/cd.yml | 6 +++--- .github/workflows/ci.yml | 4 ++-- .github/workflows/typos.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index a249383..9d71372 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -80,7 +80,7 @@ jobs: mkdir -p artifacts/${{ matrix.arch }} cp target/${{ matrix.target }}/release/operator artifacts/${{ matrix.arch }}/ - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: binaries-${{ matrix.arch }} path: artifacts/${{ matrix.arch }}/ @@ -103,13 +103,13 @@ jobs: run: echo "version=$(cargo pkgid | cut -d# -f2)" >> "$GITHUB_OUTPUT" - name: Download AMD64 binaries - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: binaries-amd64 path: .github/build-context/amd64/ - name: Download ARM64 binaries - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: binaries-arm64 path: .github/build-context/arm64/ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fc3084..a57461e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Generate CRDs run: cargo run --bin gen-crds > crds.yaml - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: crds path: crds.yaml @@ -73,7 +73,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: name: crds - name: Install kubeconform diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index 9f19424..505101b 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -12,6 +12,6 @@ jobs: steps: - uses: actions/checkout@v6 - name: Check spelling - uses: crate-ci/typos@v1.43.5 + uses: crate-ci/typos@v1.44.0 with: config: .typos.toml