Skip to content

Add data import section to getting started handbook #595

Add data import section to getting started handbook

Add data import section to getting started handbook #595

Workflow file for this run

name: Security
on:
push:
schedule:
- cron: "00 8 * * 5"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
brakeman-scan:
permissions:
contents: read
security-events: write
actions: read
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Ruby Setup
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Brakeman Scan
run: bin/brakeman -f sarif -o results.sarif
- name: Upload SARIF file
if: always()
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: results.sarif
dependency-audit:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Ruby Setup
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Bundle Audit
run: bin/bundler-audit check --update
- name: Importmap Audit
run: bin/importmap audit