Skip to content

Commit b83b088

Browse files
Bump the github-action-dependencies group across 1 directory with 7 updates
Bumps the github-action-dependencies group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/setup-java](https://github.com/actions/setup-java) | `5.2.0` | `5.6.0` | | [mikepenz/action-junit-report](https://github.com/mikepenz/action-junit-report) | `6.4.1` | `6.4.2` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.36.0` | `4.37.1` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `4.1.0` | `4.2.0` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `6.1.0` | `6.2.0` | | [docker/login-action](https://github.com/docker/login-action) | `4.2.0` | `4.4.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `7.2.0` | `7.3.0` | Updates `actions/setup-java` from 5.2.0 to 5.6.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v5.2.0...v5.6.0) Updates `mikepenz/action-junit-report` from 6.4.1 to 6.4.2 - [Release notes](https://github.com/mikepenz/action-junit-report/releases) - [Commits](mikepenz/action-junit-report@v6.4.1...v6.4.2) Updates `github/codeql-action` from 4.36.0 to 4.37.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v4.36.0...v4.37.1) Updates `docker/setup-buildx-action` from 4.1.0 to 4.2.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v4.1.0...v4.2.0) Updates `docker/metadata-action` from 6.1.0 to 6.2.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v6.1.0...v6.2.0) Updates `docker/login-action` from 4.2.0 to 4.4.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v4.2.0...v4.4.0) Updates `docker/build-push-action` from 7.2.0 to 7.3.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v7.2.0...v7.3.0) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: 5.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: docker/build-push-action dependency-version: 7.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: docker/login-action dependency-version: 4.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: docker/metadata-action dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: docker/setup-buildx-action dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: github/codeql-action dependency-version: 4.36.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies - dependency-name: mikepenz/action-junit-report dependency-version: 6.4.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 56327a3 commit b83b088

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: checkout code
4040
uses: actions/checkout@v5.0.0
4141
- name: setup java
42-
uses: actions/setup-java@v5.2.0
42+
uses: actions/setup-java@v5.6.0
4343
with:
4444
distribution: 'temurin'
4545
java-version: ${{matrix.jdk}}
@@ -79,7 +79,7 @@ jobs:
7979
file: ${{ matrix.jdk }}/${{ matrix.schema.env }}-coverage.svg
8080
run_id: ${{ github.run_id }}
8181
- name: Publish Test Report
82-
uses: mikepenz/action-junit-report@v6.4.1
82+
uses: mikepenz/action-junit-report@v6.4.2
8383
if: always()
8484
with:
8585
annotate_only: true
@@ -95,7 +95,7 @@ jobs:
9595
- name: checkout code
9696
uses: actions/checkout@v5.0.0
9797
- name: setup java
98-
uses: actions/setup-java@v5.2.0
98+
uses: actions/setup-java@v5.6.0
9999
with:
100100
distribution: 'temurin'
101101
java-version: 11
@@ -104,7 +104,7 @@ jobs:
104104
id: thebuild
105105
run: ./gradlew clean :cwms-data-api:test --tests "cwms.cda.api.OpenApiDocTest" --info --init-script init.gradle
106106
- name: Publish Test Report
107-
uses: mikepenz/action-junit-report@v6.4.1
107+
uses: mikepenz/action-junit-report@v6.4.2
108108
if: always()
109109
with:
110110
annotate_only: true

.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@v5.0.0
1818

1919
- name: Initialize CodeQL
20-
uses: github/codeql-action/init@v4.36.0
20+
uses: github/codeql-action/init@v4.37.1
2121
with:
2222
languages: 'java'
2323
- name: setup java
24-
uses: actions/setup-java@v5.2.0
24+
uses: actions/setup-java@v5.6.0
2525
with:
2626
java-version: '11'
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@v4.36.0
37+
uses: github/codeql-action/analyze@v4.37.1

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
with:
6262
ref: ${{inputs.branch}}
6363
- name: setup java
64-
uses: actions/setup-java@v5.2.0
64+
uses: actions/setup-java@v5.6.0
6565
with:
6666
distribution: 'temurin'
6767
java-version: '11'
@@ -96,10 +96,10 @@ jobs:
9696
generate_release_notes: true
9797
token: ${{ secrets.token != null && secrets.token || secrets.GITHUB_TOKEN }}
9898
- name: Set up Docker Buildx
99-
uses: docker/setup-buildx-action@v4.1.0
99+
uses: docker/setup-buildx-action@v4.2.0
100100
- name: Docker meta
101101
id: meta
102-
uses: docker/metadata-action@v6.1.0
102+
uses: docker/metadata-action@v6.2.0
103103
with:
104104
# this is triggered by the schedule so we want to actually use the checked out information
105105
# and not the context from the workflow itself.
@@ -115,20 +115,20 @@ jobs:
115115
type=schedule,pattern=${{inputs.branch}}-{{date 'YYYY.MM.DD-hhmmss'}}
116116
- name: Log in to the Container registry
117117
id: login-ghcr
118-
uses: docker/login-action@v4.2.0
118+
uses: docker/login-action@v4.4.0
119119
with:
120120
registry: ghcr.io
121121
username: ${{ github.actor }}
122122
password: ${{ secrets.token != null && secrets.token || secrets.GITHUB_TOKEN }}
123123
- name: Login to HEC Public Registry
124-
uses: docker/login-action@v4.2.0
124+
uses: docker/login-action@v4.4.0
125125
id: login-hec
126126
with:
127127
registry: ${{ secrets.registry != null && secrets.registry ||secrets.HEC_PUB_REGISTRY }}
128128
username: ${{ secrets.registry_user != null && secrets.registry_user || secrets.ALT_REG_USER }}
129129
password: ${{ secrets.registry_password != null && secrets.registry_password || secrets.ALT_REG_PASSWORD }}
130130
- name: Build and push
131-
uses: docker/build-push-action@v7.2.0
131+
uses: docker/build-push-action@v7.3.0
132132
with:
133133
context: "."
134134
# This is not conditional on pull_request as we want access to these if we are manually running it.

0 commit comments

Comments
 (0)