From 214330f59af101ed288a97c69e4045e740734346 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 06:15:12 +0000 Subject: [PATCH] Bump the github-action-dependencies group with 3 updates Bumps the github-action-dependencies group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 4.2.0 to 4.2.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.2.0...v4.2.1) Updates `actions/upload-artifact` from 4.4.0 to 4.4.3 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.4.0...v4.4.3) Updates `github/codeql-action` from 3.26.11 to 3.26.12 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3.26.11...v3.26.12) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- .github/workflows/codeql.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f57593580..f14ff71a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: thewar: ${{steps.thebuild.outputs.WARFILE}} steps: - name: checkout code - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.1 - name: setup java uses: actions/setup-java@v4.4.0 with: @@ -28,7 +28,7 @@ jobs: id: thebuild run: ./gradlew build --info --init-script init.gradle - name: Upload WAR - uses: actions/upload-artifact@v4.4.0 + uses: actions/upload-artifact@v4.4.3 with: name: warfile path: cwms-data-api/build/libs/${{steps.thebuild.outputs.WARFILE}} @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout code - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.1 - name: setup java uses: actions/setup-java@v4.4.0 with: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 6b200862c..08d77ce01 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4.2.0 + uses: actions/checkout@v4.2.1 - name: Initialize CodeQL - uses: github/codeql-action/init@v3.26.11 + uses: github/codeql-action/init@v3.26.12 with: languages: 'java' - name: setup java @@ -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.26.11 \ No newline at end of file + uses: github/codeql-action/analyze@v3.26.12 \ No newline at end of file