diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 59a1d12f7..019a829fe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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}} @@ -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 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 679cc193b..fad7cd3b1 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index da9256ff0..006e9c719 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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' @@ -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}} @@ -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. @@ -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 }}