chore(deps): update dependency bosh-cli to v7.8.5 #11478
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Check Java Code | |
on: | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
concurrency: | |
group: "${{ github.workflow }}/${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
code-style: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main@sha256:b89f25eeea092104fb75e8e7eaf76b0dbd3156bec51ea234670ff0bdd1fc6e8b | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Check Code Formatting | |
run: | | |
sh ./style-guide/google-format-ci-v0.1.sh | |
env: | |
GOOGLE_JAR_VERSION: 1.22.0 | |
GOOGLE_JAR_NAME: google-java-format-1.22.0-all-deps.jar | |
- name: Checkstyle | |
run: | | |
pushd src/scheduler | |
mvn --no-transfer-progress jxr:jxr | |
mvn --no-transfer-progress checkstyle:checkstyle | |
popd | |
- name: Publish Results on Pull Request | |
run: | | |
go run src/fmt_chkstyle/format_checkstyle.go |