diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a501909a..629403ca9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: - name: checkout code uses: actions/checkout@v4.2.2 - name: setup java - uses: actions/setup-java@v4.6.0 + uses: actions/setup-java@v4.7.0 with: distribution: 'temurin' java-version: '8' diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e5cce265a..14d54c42b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -17,11 +17,11 @@ jobs: uses: actions/checkout@v4.2.2 - name: Initialize CodeQL - uses: github/codeql-action/init@v3.28.0 + uses: github/codeql-action/init@v3.28.13 with: languages: 'java' - name: setup java - uses: actions/setup-java@v4.6.0 + uses: actions/setup-java@v4.7.0 with: java-version: '8' java-package: jdk @@ -34,4 +34,4 @@ jobs: id: build run: ./gradlew build --info --init-script init.gradle - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3.28.0 \ No newline at end of file + uses: github/codeql-action/analyze@v3.28.13 \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d37f5ca94..4b95d8c01 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,7 +54,7 @@ jobs: with: ref: ${{inputs.branch}} - name: setup java - uses: actions/setup-java@v4.6.0 + uses: actions/setup-java@v4.7.0 with: distribution: 'temurin' java-version: '8' @@ -71,7 +71,7 @@ jobs: run: ./gradlew build --info --init-script init.gradle -PversionOverride=$VERSION - name: Create GitHub Release id: create_release - uses: softprops/action-gh-release@v2.1.0 + uses: softprops/action-gh-release@v2.2.1 with: files: cwms-data-api/build/libs/cwms-data-api-${{env.VERSION}}.war tag_name: ${{env.VERSION}} @@ -79,13 +79,13 @@ jobs: token: ${{ secrets.token != null && secrets.token || secrets.GITHUB_TOKEN }} - name: Log in to the Container registry id: login-ghcr - uses: docker/login-action@v3.3.0 + uses: docker/login-action@v3.4.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.3.0 + uses: docker/login-action@v3.4.0 id: login-hec with: registry: ${{ secrets.registry != null && secrets.registry ||secrets.HEC_PUB_REGISTRY }}