Skip to content

Commit 684341c

Browse files
Bump the github-action-dependencies group across 1 directory with 5 updates
Bumps the github-action-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/setup-java](https://github.com/actions/setup-java) | `5.0.0` | `5.1.0` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2.3.2` | `2.5.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.11.1` | `3.12.0` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5.8.0` | `5.10.0` | | [docker/login-action](https://github.com/docker/login-action) | `3.5.0` | `3.6.0` | Updates `actions/setup-java` from 5.0.0 to 5.1.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@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](softprops/action-gh-release@v2.3.2...v2.5.0) Updates `docker/setup-buildx-action` from 3.11.1 to 3.12.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3.11.1...v3.12.0) Updates `docker/metadata-action` from 5.8.0 to 5.10.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@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](docker/login-action@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/setup-buildx-action dependency-version: 3.12.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] <[email protected]>
1 parent 053eae0 commit 684341c

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: checkout code
2828
uses: actions/[email protected]
2929
- name: setup java
30-
uses: actions/setup-java@v5.0.0
30+
uses: actions/setup-java@v5.1.0
3131
with:
3232
distribution: 'temurin'
3333
java-version: ${{matrix.jdk}}
@@ -53,7 +53,7 @@ jobs:
5353
- name: checkout code
5454
uses: actions/[email protected]
5555
- name: setup java
56-
uses: actions/setup-java@v5.0.0
56+
uses: actions/setup-java@v5.1.0
5757
with:
5858
distribution: 'temurin'
5959
java-version: 11

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
languages: 'java'
2323
- name: setup java
24-
uses: actions/setup-java@v5.0.0
24+
uses: actions/setup-java@v5.1.0
2525
with:
2626
java-version: '11'
2727
java-package: jdk

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
with:
5656
ref: ${{inputs.branch}}
5757
- name: setup java
58-
uses: actions/setup-java@v5.0.0
58+
uses: actions/setup-java@v5.1.0
5959
with:
6060
distribution: 'temurin'
6161
java-version: '11'
@@ -78,17 +78,17 @@ jobs:
7878
id: create_release
7979
# Allow testing without creating a release
8080
if: github.event_name != 'pull_request' && (github.event.ref == 'refs/heads/develop' || startsWith(github.event.ref, 'refs/tags'))
81-
uses: softprops/action-gh-release@v2.3.2
81+
uses: softprops/action-gh-release@v2.5.0
8282
with:
8383
files: cwms-data-api/build/libs/cwms-data-api-${{env.VERSION}}.war
8484
tag_name: ${{env.VERSION}}
8585
generate_release_notes: true
8686
token: ${{ secrets.token != null && secrets.token || secrets.GITHUB_TOKEN }}
8787
- name: Set up Docker Buildx
88-
uses: docker/setup-buildx-action@v3.11.1
88+
uses: docker/setup-buildx-action@v3.12.0
8989
- name: Docker meta
9090
id: meta
91-
uses: docker/metadata-action@v5.8.0
91+
uses: docker/metadata-action@v5.10.0
9292
with:
9393
# this is triggered by the schedule so we want to actually use the checked out information
9494
# and not the context from the workflow itself.
@@ -104,13 +104,13 @@ jobs:
104104
type=schedule,pattern=${{inputs.branch}}-{{date 'YYYY.MM.DD-hhmmss'}}
105105
- name: Log in to the Container registry
106106
id: login-ghcr
107-
uses: docker/login-action@v3.5.0
107+
uses: docker/login-action@v3.6.0
108108
with:
109109
registry: ghcr.io
110110
username: ${{ github.actor }}
111111
password: ${{ secrets.token != null && secrets.token || secrets.GITHUB_TOKEN }}
112112
- name: Login to HEC Public Registry
113-
uses: docker/login-action@v3.5.0
113+
uses: docker/login-action@v3.6.0
114114
id: login-hec
115115
with:
116116
registry: ${{ secrets.registry != null && secrets.registry ||secrets.HEC_PUB_REGISTRY }}

0 commit comments

Comments
 (0)