From 9cb9a04a988dfcd0aee1dc5dcfc45153260cdf72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 10:54:40 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 9 updates Bumps the github-actions group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `5` | | [dorny/paths-filter](https://github.com/dorny/paths-filter) | `3` | `4` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3` | `4` | | [googleapis/release-please-action](https://github.com/googleapis/release-please-action) | `4` | `5` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5` | `6` | 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) Updates `actions/setup-java` from 4 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) Updates `dorny/paths-filter` from 3 to 4 - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](https://github.com/dorny/paths-filter/compare/v3...v4) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3...v4) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6...v7) Updates `docker/setup-qemu-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](https://github.com/docker/setup-qemu-action/compare/v3...v4) Updates `googleapis/release-please-action` from 4 to 5 - [Release notes](https://github.com/googleapis/release-please-action/releases) - [Changelog](https://github.com/googleapis/release-please-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/release-please-action/compare/v4...v5) Updates `codecov/codecov-action` from 5 to 6 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: dorny/paths-filter dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-qemu-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: googleapis/release-please-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-kotlin-bundle.yml | 12 ++++++------ .github/workflows/docker-image-test.yml | 12 ++++++------ .github/workflows/release-please.yml | 6 +++--- .github/workflows/test.yml | 6 +++--- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/build-kotlin-bundle.yml b/.github/workflows/build-kotlin-bundle.yml index bf73cd3..c160b54 100644 --- a/.github/workflows/build-kotlin-bundle.yml +++ b/.github/workflows/build-kotlin-bundle.yml @@ -100,7 +100,7 @@ jobs: df -h - name: Upload bundle artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: bins-${{ matrix.os }}-${{ runner.arch }} path: modelaudit-kotlin/src/main/resources/io/modelaudit/bins/ @@ -113,7 +113,7 @@ jobs: - uses: actions/checkout@v6 - name: Download all bundle artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: path: bins-artifacts pattern: bins-* @@ -137,7 +137,7 @@ jobs: ls -la "$BINS_ROOT" - name: Set up JDK 17 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: temurin java-version: 17 @@ -146,7 +146,7 @@ jobs: run: ./gradlew :modelaudit-kotlin:jar -PskipBundleBuild --no-daemon - name: Upload JAR artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: modelaudit-kotlin-jar path: modelaudit-kotlin/build/libs/modelaudit-kotlin-*.jar @@ -162,7 +162,7 @@ jobs: - uses: actions/checkout@v6 - name: Download all bundle artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: path: bins-artifacts pattern: bins-* @@ -186,7 +186,7 @@ jobs: ls -la "$BINS_ROOT" - name: Set up JDK 17 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: temurin java-version: 17 diff --git a/.github/workflows/docker-image-test.yml b/.github/workflows/docker-image-test.yml index ce7cc77..edafcfa 100644 --- a/.github/workflows/docker-image-test.yml +++ b/.github/workflows/docker-image-test.yml @@ -28,7 +28,7 @@ jobs: full-image: ${{ steps.filter.outputs.full-image }} steps: - uses: actions/checkout@v6 - - uses: dorny/paths-filter@v3 + - uses: dorny/paths-filter@v4 id: filter with: filters: | @@ -52,10 +52,10 @@ jobs: - uses: actions/checkout@v6 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Build lightweight image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: Dockerfile @@ -102,13 +102,13 @@ jobs: - uses: actions/checkout@v6 - name: Set up QEMU - uses: docker/setup-qemu-action@v3 + uses: docker/setup-qemu-action@v4 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Build full image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: Dockerfile.full diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index f0e4e18..033b19d 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -23,7 +23,7 @@ jobs: version: ${{ steps.release.outputs.version }} pr_number: ${{ steps.release.outputs.pr && fromJSON(steps.release.outputs.pr).number || '' }} steps: - - uses: googleapis/release-please-action@v4 + - uses: googleapis/release-please-action@v5 id: release with: token: ${{ secrets.GITHUB_TOKEN }} @@ -108,7 +108,7 @@ jobs: - name: Upload build artifacts id: upload - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: dist path: dist/ @@ -125,7 +125,7 @@ jobs: id-token: write steps: - name: Download build artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: dist path: dist/ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a3cfeba..29db700 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,7 +33,7 @@ jobs: dependencies: ${{ steps.filter.outputs.dependencies }} steps: - uses: actions/checkout@v6 - - uses: dorny/paths-filter@v3 + - uses: dorny/paths-filter@v4 id: filter with: filters: | @@ -266,7 +266,7 @@ jobs: - name: Upload coverage to Codecov if: matrix.python-version == '3.12' - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: files: ./coverage.xml fail_ci_if_error: false @@ -389,7 +389,7 @@ jobs: uv build - name: Upload artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: dist path: dist/