Skip to content

Commit 4e6da91

Browse files
build(deps): bump the actions-all group with 4 updates
Bumps the actions-all group with 4 updates: [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](actions/setup-java@v1...v5) Updates `GabrielBB/xvfb-action` from 1.0 to 1.7 - [Release notes](https://github.com/gabrielbb/xvfb-action/releases) - [Commits](GabrielBB/xvfb-action@v1.0...v1.7) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@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](peaceiris/actions-gh-pages@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] <support@github.com>
1 parent 927c744 commit 4e6da91

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci-build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,34 +14,34 @@ jobs:
1414
- uses: actions/checkout@v6
1515

1616
- name: Set up JDK 17
17-
uses: actions/setup-java@v1
17+
uses: actions/setup-java@v5
1818
with:
1919
java-version: 17
2020

2121
- name: Set up grahpviz
2222
run: sudo apt-get install graphviz
2323

2424
- name: Build with xvfb enabled
25-
uses: GabrielBB/xvfb-action@v1.0
25+
uses: GabrielBB/xvfb-action@v1.7
2626
with:
2727
run: mvn -B package
2828

2929
- name: upload webtau test report
30-
uses: actions/upload-artifact@v6
30+
uses: actions/upload-artifact@v7
3131
if: always()
3232
with:
3333
name: webtau report
3434
path: znai-tests/src/test/groovy/webtau.report.html
3535
retention-days: 3
3636
- name: upload testing examples webtau test report
37-
uses: actions/upload-artifact@v6
37+
uses: actions/upload-artifact@v7
3838
if: always()
3939
with:
4040
name: webtau testing examples report
4141
path: znai-testing-examples/examples/webtau.report.html
4242
retention-days: 3
4343
- name: upload screenshots when build fails
44-
uses: actions/upload-artifact@v6
44+
uses: actions/upload-artifact@v7
4545
if: failure()
4646
with:
4747
name: doc screenshots

.github/workflows/documentation-deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- run: git fetch --prune --unshallow
1515

1616
- name: Set up JDK 17
17-
uses: actions/setup-java@v1
17+
uses: actions/setup-java@v5
1818
with:
1919
java-version: 17
2020

@@ -25,12 +25,12 @@ jobs:
2525
run: mvn versions:set -DnewVersion=$(git describe --abbrev=0)
2626

2727
- name: Build with xvfb enabled
28-
uses: GabrielBB/xvfb-action@v1.0
28+
uses: GabrielBB/xvfb-action@v1.7
2929
with:
3030
run: mvn -B package
3131

3232
- name: deploy documentation
33-
uses: peaceiris/actions-gh-pages@v3
33+
uses: peaceiris/actions-gh-pages@v4
3434
with:
3535
github_token: ${{ secrets.GITHUB_TOKEN }}
3636
publish_dir: ./znai-docs/target/znai

0 commit comments

Comments
 (0)