Skip to content

Commit

Permalink
Add new build file
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonodoom committed Jun 27, 2023
1 parent f5b32fd commit 700be92
Show file tree
Hide file tree
Showing 4 changed files with 109 additions and 6 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/_build.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
67 changes: 67 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -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
6 changes: 1 addition & 5 deletions .github/workflows/on-workflow-dispatch.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 700be92

Please sign in to comment.