Skip to content

Commit

Permalink
ci(github): use maven batch mode and force updates (#1319)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores authored Jan 4, 2023
1 parent e1a560f commit 111d3ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
repository: ${{ inputs.checkout-repo }}
ref: ${{ inputs.checkout-ref }}
- name: Run spotless
run: mvn spotless:check
run: mvn -B -U spotless:check

spotbugs:
runs-on: ubuntu-latest
Expand All @@ -133,7 +133,7 @@ jobs:
servers: '[{"id": "github", "username": "dummy", "password": "${env.GITHUB_TOKEN_REF}"}]'
githubServer: false
- name: Run spotbugs
run: mvn -Dheadless=true compile spotbugs:check
run: mvn -B -U -Dheadless=true compile spotbugs:check
env:
GITHUB_TOKEN_REF: ${{ secrets.GH_PKGS_READ_TOKEN }}

Expand All @@ -145,4 +145,4 @@ jobs:
repository: ${{ inputs.checkout-repo }}
ref: ${{ inputs.checkout-ref }}
- name: Run shellcheck
run: mvn shellcheck:check
run: mvn -B -U shellcheck:check

0 comments on commit 111d3ad

Please sign in to comment.