build(deps): bump axel-op/googlejavaformat-action from b8a3003f6bb1d4b521a2105f35a16131d49a8709 to ccabf6320cac504bc85712b34d57bda817db340a in /.github/workflows #724
Workflow file for this run
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 Format | |
on: [ push, pull_request ] | |
permissions: | |
contents: read | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: axel-op/googlejavaformat-action@ccabf6320cac504bc85712b34d57bda817db340a # v3.6 | |
with: | |
args: "--aosp --skip-javadoc-formatting --skip-reflowing-long-strings --skip-sorting-imports --replace" | |
skip-commit: true | |
- name: Print diffs | |
run: git --no-pager diff --exit-code |