From 1241bd0dfb91b1739cc0afc51043471c4db2f016 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Apr 2026 13:35:55 +0000 Subject: [PATCH] chore(deps): bump the actions group with 5 updates Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | Updates `actions/checkout` from 4 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/v4...v6) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) 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 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 2 +- .github/workflows/test-bundle-helpers.yaml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a7ae4388c4e1d..2d038d1838f14 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -398,7 +398,7 @@ jobs: - uses: ./.github/actions/handle-tagged-build - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version-file: operator/bundle_helpers/.python-version diff --git a/.github/workflows/test-bundle-helpers.yaml b/.github/workflows/test-bundle-helpers.yaml index 6a98f5c65a2a7..764f4eb077fcb 100644 --- a/.github/workflows/test-bundle-helpers.yaml +++ b/.github/workflows/test-bundle-helpers.yaml @@ -45,13 +45,13 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.12' @@ -78,7 +78,7 @@ jobs: git diff --exit-code HEAD - name: Upload Python bundle artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: bundle-python-${{ matrix.related_img_mode }} path: /tmp/artifacts/ @@ -100,13 +100,13 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: go.mod cache: false @@ -121,7 +121,7 @@ jobs: # Needed since the Go implementation uses yaml-normalizer.py - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.12' @@ -146,7 +146,7 @@ jobs: git diff --exit-code HEAD - name: Upload Go bundle artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: bundle-go-${{ matrix.related_img_mode }} path: /tmp/artifacts/ @@ -166,13 +166,13 @@ jobs: steps: - name: Download Python bundle - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: bundle-python-${{ matrix.related_img_mode }} path: /tmp/python - name: Download Go bundle - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: bundle-go-${{ matrix.related_img_mode }} path: /tmp/go