codeql.yaml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. name: "CodeQL"
  17. on:
  18. push:
  19. branches:
  20. - 'dev'
  21. pull_request:
  22. branches:
  23. - 'dev'
  24. concurrency:
  25. group: codeql-${{ github.event.pull_request.number || github.ref }}
  26. cancel-in-progress: true
  27. jobs:
  28. analyze:
  29. if: (github.event_name == 'schedule' && github.repository == 'apache/dolphinscheduler') || (github.event_name != 'schedule')
  30. name: Analyze
  31. runs-on: ubuntu-latest
  32. steps:
  33. - name: Checkout repository
  34. uses: actions/checkout@v3
  35. with:
  36. submodules: true
  37. - name: Initialize CodeQL
  38. uses: github/codeql-action/init@v2
  39. with:
  40. languages: java
  41. queries: +security-and-quality
  42. - run: |
  43. ./mvnw -B clean install \
  44. -Dmaven.test.skip \
  45. -Dmaven.javadoc.skip \
  46. -Dspotless.skip=true \
  47. -Prelease
  48. - name: Perform CodeQL Analysis
  49. uses: github/codeql-action/analyze@v2