From 22183961c0f8aeb2e279fb3c51cbfd2e74623ea9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 06:11:11 +0000 Subject: [PATCH] Bump the github-action-dependencies group across 1 directory with 4 updates Bumps the github-action-dependencies group with 4 updates in the / directory: [actions/setup-java](https://github.com/actions/setup-java), [softprops/action-gh-release](https://github.com/softprops/action-gh-release), [docker/metadata-action](https://github.com/docker/metadata-action) and [docker/login-action](https://github.com/docker/login-action). Updates `actions/setup-java` from 5.0.0 to 5.1.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v5.0.0...v5.1.0) Updates `softprops/action-gh-release` from 2.3.2 to 2.5.0 - [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.3.2...v2.5.0) Updates `docker/metadata-action` from 5.8.0 to 5.10.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](https://github.com/docker/metadata-action/compare/v5.8.0...v5.10.0) Updates `docker/login-action` from 3.5.0 to 3.6.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3.5.0...v3.6.0) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: 5.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: softprops/action-gh-release dependency-version: 2.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: docker/metadata-action dependency-version: 5.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: docker/login-action dependency-version: 3.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/codeql.yml | 2 +- .github/workflows/release.yml | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 59a1d12f7..019a829fe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ jobs: - name: checkout code uses: actions/checkout@v5.0.0 - name: setup java - uses: actions/setup-java@v5.0.0 + uses: actions/setup-java@v5.1.0 with: distribution: 'temurin' java-version: ${{matrix.jdk}} @@ -53,7 +53,7 @@ jobs: - name: checkout code uses: actions/checkout@v5.0.0 - name: setup java - uses: actions/setup-java@v5.0.0 + uses: actions/setup-java@v5.1.0 with: distribution: 'temurin' java-version: 11 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 679cc193b..fad7cd3b1 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -21,7 +21,7 @@ jobs: with: languages: 'java' - name: setup java - uses: actions/setup-java@v5.0.0 + uses: actions/setup-java@v5.1.0 with: java-version: '11' java-package: jdk diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index da9256ff0..006e9c719 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,7 +55,7 @@ jobs: with: ref: ${{inputs.branch}} - name: setup java - uses: actions/setup-java@v5.0.0 + uses: actions/setup-java@v5.1.0 with: distribution: 'temurin' java-version: '11' @@ -78,7 +78,7 @@ jobs: id: create_release # Allow testing without creating a release if: github.event_name != 'pull_request' && (github.event.ref == 'refs/heads/develop' || startsWith(github.event.ref, 'refs/tags')) - uses: softprops/action-gh-release@v2.3.2 + uses: softprops/action-gh-release@v2.5.0 with: files: cwms-data-api/build/libs/cwms-data-api-${{env.VERSION}}.war tag_name: ${{env.VERSION}} @@ -88,7 +88,7 @@ jobs: uses: docker/setup-buildx-action@v3.11.1 - name: Docker meta id: meta - uses: docker/metadata-action@v5.8.0 + uses: docker/metadata-action@v5.10.0 with: # this is triggered by the schedule so we want to actually use the checked out information # and not the context from the workflow itself. @@ -104,13 +104,13 @@ jobs: type=schedule,pattern=${{inputs.branch}}-{{date 'YYYY.MM.DD-hhmmss'}} - name: Log in to the Container registry id: login-ghcr - uses: docker/login-action@v3.5.0 + uses: docker/login-action@v3.6.0 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.token != null && secrets.token || secrets.GITHUB_TOKEN }} - name: Login to HEC Public Registry - uses: docker/login-action@v3.5.0 + uses: docker/login-action@v3.6.0 id: login-hec with: registry: ${{ secrets.registry != null && secrets.registry ||secrets.HEC_PUB_REGISTRY }}