From db12bceaad51b1f0ee5875e4482f7250c86ae537 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Aug 2026 02:43:02 +0000 Subject: [PATCH] deps: bump the major-dependencies group with 5 updates Bumps the major-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `5` | | [s4u/maven-settings-action](https://github.com/s4u/maven-settings-action) | `3.0.0` | `4.0.0` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2` | `3` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5` | `7` | Updates `actions/checkout` from 4 to 7 - [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...v7) 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 `s4u/maven-settings-action` from 3.0.0 to 4.0.0 - [Release notes](https://github.com/s4u/maven-settings-action/releases) - [Commits](https://github.com/s4u/maven-settings-action/compare/v3.0.0...v4.0.0) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2...v3) Updates `codecov/codecov-action` from 5 to 7 - [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...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-dependencies - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-dependencies - dependency-name: s4u/maven-settings-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-dependencies - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-dependencies - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: major-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 6 +++--- .github/workflows/publish-package.yml | 4 ++-- .github/workflows/tag-release.yml | 2 +- .github/workflows/unittests.yml | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 2e329fa..926ac0c 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -32,7 +32,7 @@ jobs: language: [ 'java' ] steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: ref: ${{ github.ref }} # Initializes the CodeQL tools for scanning. @@ -41,12 +41,12 @@ jobs: with: languages: ${{ matrix.language }} - name: Set up JDK 17 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: 17.0 distribution: 'adopt' - name: maven-settings - uses: s4u/maven-settings-action@v3.0.0 + uses: s4u/maven-settings-action@v4.0.0 with: servers: '[{"id": "github", "username": "dummy", "password": "${GITHUB_TOKEN_REF}"}]' githubServer: false diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 0213b8f..2b08fe7 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -9,8 +9,8 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v4 - - uses: actions/setup-java@v4 + - uses: actions/checkout@v7 + - uses: actions/setup-java@v5 with: java-version: '17' distribution: 'adopt' diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml index 23b9b1c..2bcf9e9 100644 --- a/.github/workflows/tag-release.yml +++ b/.github/workflows/tag-release.yml @@ -17,7 +17,7 @@ jobs: run: | echo "done!" - - uses: softprops/action-gh-release@v2 + - uses: softprops/action-gh-release@v3 with: token: "${{ secrets.PAT }}" prerelease: false diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 68bce30..b72f960 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -13,10 +13,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Java - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: 'temurin' java-version: '17' @@ -39,7 +39,7 @@ jobs: run: mvn clean verify - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} files: target/site/jacoco/jacoco.xml