Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
file: ${{ matrix.jdk }}/${{ matrix.schema.env }}-coverage.svg
run_id: ${{ github.run_id }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@v6.4.1
uses: mikepenz/action-junit-report@v6.5.0
if: always()
with:
annotate_only: true
Expand All @@ -104,7 +104,7 @@ jobs:
id: thebuild
run: ./gradlew clean :cwms-data-api:test --tests "cwms.cda.api.OpenApiDocTest" --info --init-script init.gradle
- name: Publish Test Report
uses: mikepenz/action-junit-report@v6.4.1
uses: mikepenz/action-junit-report@v6.5.0
if: always()
with:
annotate_only: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v5.0.0

- name: Initialize CodeQL
uses: github/codeql-action/init@v4.36.0
uses: github/codeql-action/init@v4.38.0
with:
languages: 'java'
- name: setup java
Expand All @@ -34,4 +34,4 @@ jobs:
id: build
run: ./gradlew build --info --init-script init.gradle
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4.36.0
uses: github/codeql-action/analyze@v4.38.0
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ jobs:
prerelease: ${{steps.version.outputs.prerelease}}
token: ${{ secrets.token != null && secrets.token || secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4.1.0
uses: docker/setup-buildx-action@v4.3.0
- name: Docker meta
id: meta
uses: docker/metadata-action@v6.1.0
uses: docker/metadata-action@v6.2.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.
Expand All @@ -124,13 +124,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@v4.2.0
uses: docker/login-action@v4.6.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.token != null && secrets.token || secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7.3.0
with:
context: "."
# This is not conditional on pull_request as we want access to these if we are manually running it.
Expand Down
Loading