From f335bcadd8ccc840df5770dab049503d4066631a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Mar 2025 06:30:16 +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), [github/codeql-action](https://github.com/github/codeql-action), [softprops/action-gh-release](https://github.com/softprops/action-gh-release) and [docker/login-action](https://github.com/docker/login-action). Updates `actions/setup-java` from 4.6.0 to 4.7.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4.6.0...v4.7.0) Updates `github/codeql-action` from 3.28.0 to 3.28.11 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3.28.0...v3.28.11) Updates `softprops/action-gh-release` from 2.1.0 to 2.2.1 - [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.1.0...v2.2.1) Updates `docker/login-action` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3.3.0...v3.4.0) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/codeql.yml | 6 +++--- .github/workflows/release.yml | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a501909a..629403ca9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: - name: checkout code uses: actions/checkout@v4.2.2 - name: setup java - uses: actions/setup-java@v4.6.0 + uses: actions/setup-java@v4.7.0 with: distribution: 'temurin' java-version: '8' diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e5cce265a..14d54c42b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -17,11 +17,11 @@ jobs: uses: actions/checkout@v4.2.2 - name: Initialize CodeQL - uses: github/codeql-action/init@v3.28.0 + uses: github/codeql-action/init@v3.28.13 with: languages: 'java' - name: setup java - uses: actions/setup-java@v4.6.0 + uses: actions/setup-java@v4.7.0 with: java-version: '8' java-package: jdk @@ -34,4 +34,4 @@ jobs: id: build run: ./gradlew build --info --init-script init.gradle - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3.28.0 \ No newline at end of file + uses: github/codeql-action/analyze@v3.28.13 \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d37f5ca94..4b95d8c01 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,7 +54,7 @@ jobs: with: ref: ${{inputs.branch}} - name: setup java - uses: actions/setup-java@v4.6.0 + uses: actions/setup-java@v4.7.0 with: distribution: 'temurin' java-version: '8' @@ -71,7 +71,7 @@ jobs: run: ./gradlew build --info --init-script init.gradle -PversionOverride=$VERSION - name: Create GitHub Release id: create_release - uses: softprops/action-gh-release@v2.1.0 + uses: softprops/action-gh-release@v2.2.1 with: files: cwms-data-api/build/libs/cwms-data-api-${{env.VERSION}}.war tag_name: ${{env.VERSION}} @@ -79,13 +79,13 @@ jobs: token: ${{ secrets.token != null && secrets.token || secrets.GITHUB_TOKEN }} - name: Log in to the Container registry id: login-ghcr - uses: docker/login-action@v3.3.0 + uses: docker/login-action@v3.4.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.3.0 + uses: docker/login-action@v3.4.0 id: login-hec with: registry: ${{ secrets.registry != null && secrets.registry ||secrets.HEC_PUB_REGISTRY }}