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 @@ -27,7 +27,7 @@ jobs:
- name: checkout code
uses: actions/checkout@v5.0.0
- name: setup java
uses: actions/setup-java@v5.0.0
uses: actions/setup-java@v5.1.0
with:
distribution: 'temurin'
java-version: ${{matrix.jdk}}
Expand All @@ -53,7 +53,7 @@ jobs:
- name: checkout code
uses: actions/checkout@v5.0.0
- name: setup java
uses: actions/setup-java@v5.0.0
uses: actions/setup-java@v5.1.0
with:
distribution: 'temurin'
java-version: 11
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
languages: 'java'
- name: setup java
uses: actions/setup-java@v5.0.0
uses: actions/setup-java@v5.1.0
with:
java-version: '11'
java-package: jdk
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
with:
ref: ${{inputs.branch}}
- name: setup java
uses: actions/setup-java@v5.0.0
uses: actions/setup-java@v5.1.0
with:
distribution: 'temurin'
java-version: '11'
Expand All @@ -78,7 +78,7 @@ jobs:
id: create_release
# Allow testing without creating a release
if: github.event_name != 'pull_request' && (github.event.ref == 'refs/heads/develop' || startsWith(github.event.ref, 'refs/tags'))
uses: softprops/action-gh-release@v2.3.2
uses: softprops/action-gh-release@v2.5.0
with:
files: cwms-data-api/build/libs/cwms-data-api-${{env.VERSION}}.war
tag_name: ${{env.VERSION}}
Expand All @@ -88,7 +88,7 @@ jobs:
uses: docker/setup-buildx-action@v3.11.1
- name: Docker meta
id: meta
uses: docker/metadata-action@v5.8.0
uses: docker/metadata-action@v5.10.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 @@ -104,13 +104,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@v3.5.0
uses: docker/login-action@v3.6.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.5.0
uses: docker/login-action@v3.6.0
id: login-hec
with:
registry: ${{ secrets.registry != null && secrets.registry ||secrets.HEC_PUB_REGISTRY }}
Expand Down
Loading