From 700be92730b4d0afdd0a7c2957bff2fafa705dc4 Mon Sep 17 00:00:00 2001 From: Jason Odoom Date: Tue, 27 Jun 2023 13:48:02 -0400 Subject: [PATCH] Add new build file --- .github/workflows/_build.yml | 40 +++++++++++++ .github/workflows/build.yml | 2 +- .github/workflows/codeql-analysis.yml | 67 ++++++++++++++++++++++ .github/workflows/on-workflow-dispatch.yml | 6 +- 4 files changed, 109 insertions(+), 6 deletions(-) create mode 100644 .github/workflows/_build.yml create mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/_build.yml b/.github/workflows/_build.yml new file mode 100644 index 0000000..99cf990 --- /dev/null +++ b/.github/workflows/_build.yml @@ -0,0 +1,40 @@ +--- +name: "Build" + +on: + push: + branches: + - "**" + tags: + - "v*.*.*" + pull_request: + schedule: + - cron: "0 10 * * *" # everyday at 10am + repository_dispatch: + # Respond to rebuild requests. See: https://github.com/cisagov/action-apb/ + types: [apb] + workflow_dispatch: + inputs: + remote-shell: + description: "Debug with remote shell" + required: true + default: "false" + image-tag: + description: "Tag to apply to pushed images" + required: true + default: "dispatch" + + +permissions: + actions: read + contents: read + +jobs: + config: + name: "Config" + uses: cisagov/github-actions-workflows/.github/workflows/_config.yml@first-commits + lint: + name: "Lint" + needs: + - config + uses: cisagov/github-actions-workflows/.github/workflows/common-lint.yml@first-commits diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 613de3f..08d67c7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -248,7 +248,7 @@ jobs: run: mkdir -p dist - name: Build image id: docker_build - uses: cisagov/github-actions-workflows/.github/workflows/docker-build-image.yml@first-commits + uses: docker/build-push-action@v4 with: build-args: | VERSION=${{ needs.prepare.outputs.source_version }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000..bf0d148 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,67 @@ +--- +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +name: "CodeQL" + +on: + push: + # Dependabot triggered push events have read-only access, but uploading code + # scanning requires write access. + branches-ignore: + - dependabot/** + pull_request: + # The branches below must be a subset of the branches above + branches: + - develop + schedule: + - cron: '0 21 * * 6' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + # required for all workflows + security-events: write + strategy: + fail-fast: false + matrix: + # Override automatic language detection by changing the below list + # Supported options are go, javascript, csharp, python, cpp, and java + language: + - python + # Learn more... + # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + + # Autobuild attempts to build any compiled languages (C/C++, C#, or + # Java). If this step fails, then you should remove it and run the build + # manually (see below). + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + # ℹī¸ Command-line programs to run using the OS shell. + # 📚 https://git.io/JvXDl + + # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following + # three lines and modify them (or add more) to build your code if your + # project uses a compiled language + + # - run: | + # make bootstrap + # make release + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/on-workflow-dispatch.yml b/.github/workflows/on-workflow-dispatch.yml index 5a56ff0..907cb68 100644 --- a/.github/workflows/on-workflow-dispatch.yml +++ b/.github/workflows/on-workflow-dispatch.yml @@ -1,14 +1,10 @@ --- name: Call a reusable workflow -on: - pull_request: - branches: - - reusable-workflows +on: push jobs: dependency-review: uses: cisagov/github-actions-workflows/.github/workflows/dependency-review.yml@first-commits codeql-analysis: uses: cisagov/github-actions-workflows/.github/workflows/codeql-analysis.yml@first-commits -