From 79e5597476d3f6d1f11c7d650a6141a5568661eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Mar 2026 09:33:40 +0000 Subject: [PATCH] build(deps): bump the actions-all group across 1 directory with 4 updates Bumps the actions-all group with 4 updates in the / directory: [actions/setup-java](https://github.com/actions/setup-java), [GabrielBB/xvfb-action](https://github.com/gabrielbb/xvfb-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages). Updates `actions/setup-java` from 1 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v1...v5) Updates `GabrielBB/xvfb-action` from 1.0 to 1.7 - [Release notes](https://github.com/gabrielbb/xvfb-action/releases) - [Commits](https://github.com/gabrielbb/xvfb-action/compare/v1.0...v1.7) 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 `peaceiris/actions-gh-pages` from 3 to 4 - [Release notes](https://github.com/peaceiris/actions-gh-pages/releases) - [Changelog](https://github.com/peaceiris/actions-gh-pages/blob/main/CHANGELOG.md) - [Commits](https://github.com/peaceiris/actions-gh-pages/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-all - dependency-name: GabrielBB/xvfb-action dependency-version: '1.7' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-all - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-all - dependency-name: peaceiris/actions-gh-pages dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-all ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-build.yaml | 10 +++++----- .github/workflows/documentation-deploy.yaml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index d171252ed..9afb4ea10 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v6 - name: Set up JDK 17 - uses: actions/setup-java@v1 + uses: actions/setup-java@v5 with: java-version: 17 @@ -22,26 +22,26 @@ jobs: run: sudo apt-get install graphviz - name: Build with xvfb enabled - uses: GabrielBB/xvfb-action@v1.0 + uses: GabrielBB/xvfb-action@v1.7 with: run: mvn -B package - name: upload webtau test report - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: webtau report path: znai-tests/src/test/groovy/webtau.report.html retention-days: 3 - name: upload testing examples webtau test report - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: webtau testing examples report path: znai-testing-examples/examples/webtau.report.html retention-days: 3 - name: upload screenshots when build fails - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: failure() with: name: doc screenshots diff --git a/.github/workflows/documentation-deploy.yaml b/.github/workflows/documentation-deploy.yaml index f3c8a44cb..62bdd8208 100644 --- a/.github/workflows/documentation-deploy.yaml +++ b/.github/workflows/documentation-deploy.yaml @@ -14,7 +14,7 @@ jobs: - run: git fetch --prune --unshallow - name: Set up JDK 17 - uses: actions/setup-java@v1 + uses: actions/setup-java@v5 with: java-version: 17 @@ -25,12 +25,12 @@ jobs: run: mvn versions:set -DnewVersion=$(git describe --abbrev=0) - name: Build with xvfb enabled - uses: GabrielBB/xvfb-action@v1.0 + uses: GabrielBB/xvfb-action@v1.7 with: run: mvn -B package - name: deploy documentation - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./znai-docs/target/znai