Skip to content

Commit 4fac669

Browse files
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](actions/setup-java@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](github/codeql-action@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](softprops/action-gh-release@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](docker/login-action@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] <support@github.com>
1 parent 0f8b22f commit 4fac669

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: checkout code
1919
uses: actions/checkout@v4.2.2
2020
- name: setup java
21-
uses: actions/setup-java@v4.6.0
21+
uses: actions/setup-java@v4.7.0
2222
with:
2323
distribution: 'temurin'
2424
java-version: '8'

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
uses: actions/checkout@v4.2.2
1818

1919
- name: Initialize CodeQL
20-
uses: github/codeql-action/init@v3.28.0
20+
uses: github/codeql-action/init@v3.28.11
2121
with:
2222
languages: 'java'
2323
- name: setup java
24-
uses: actions/setup-java@v4.6.0
24+
uses: actions/setup-java@v4.7.0
2525
with:
2626
java-version: '8'
2727
java-package: jdk
@@ -34,4 +34,4 @@ jobs:
3434
id: build
3535
run: ./gradlew build --info --init-script init.gradle
3636
- name: Perform CodeQL Analysis
37-
uses: github/codeql-action/analyze@v3.28.0
37+
uses: github/codeql-action/analyze@v3.28.11

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
ref: ${{inputs.branch}}
5252
- name: setup java
53-
uses: actions/setup-java@v4.6.0
53+
uses: actions/setup-java@v4.7.0
5454
with:
5555
distribution: 'temurin'
5656
java-version: '8'
@@ -67,21 +67,21 @@ jobs:
6767
run: ./gradlew build --info --init-script init.gradle -PversionOverride=$VERSION
6868
- name: Create GitHub Release
6969
id: create_release
70-
uses: softprops/action-gh-release@v2.1.0
70+
uses: softprops/action-gh-release@v2.2.1
7171
with:
7272
files: cwms-data-api/build/libs/cwms-data-api-${{env.VERSION}}.war
7373
tag_name: ${{env.VERSION}}
7474
generate_release_notes: true
7575
token: ${{ secrets.token != null && secrets.token || secrets.GITHUB_TOKEN }}
7676
- name: Log in to the Container registry
7777
id: login-ghcr
78-
uses: docker/login-action@v3.3.0
78+
uses: docker/login-action@v3.4.0
7979
with:
8080
registry: ghcr.io
8181
username: ${{ github.actor }}
8282
password: ${{ secrets.token != null && secrets.token || secrets.GITHUB_TOKEN }}
8383
- name: Login to HEC Public Registry
84-
uses: docker/login-action@v3.3.0
84+
uses: docker/login-action@v3.4.0
8585
id: login-hec
8686
with:
8787
registry: ${{ secrets.registry != null && secrets.registry ||secrets.HEC_PUB_REGISTRY }}

0 commit comments

Comments
 (0)